diff options
Diffstat (limited to 'Source/WebKit/chromium/src/WebFileSystemCallbacksImpl.h')
-rw-r--r-- | Source/WebKit/chromium/src/WebFileSystemCallbacksImpl.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Source/WebKit/chromium/src/WebFileSystemCallbacksImpl.h b/Source/WebKit/chromium/src/WebFileSystemCallbacksImpl.h index d2be57434..76e8cdf8f 100644 --- a/Source/WebKit/chromium/src/WebFileSystemCallbacksImpl.h +++ b/Source/WebKit/chromium/src/WebFileSystemCallbacksImpl.h @@ -31,9 +31,9 @@ #ifndef WebFileSystemCallbacksImpl_h #define WebFileSystemCallbacksImpl_h -#include "AsyncFileSystem.h" -#include "platform/WebFileSystem.h" +#include "FileSystemType.h" #include "WebFileSystemCallbacks.h" +#include "platform/WebFileSystem.h" #include "platform/WebVector.h" #include <wtf/OwnPtr.h> #include <wtf/PassOwnPtr.h> @@ -52,7 +52,7 @@ class WebURL; class WebFileSystemCallbacksImpl : public WebFileSystemCallbacks { public: - WebFileSystemCallbacksImpl(PassOwnPtr<WebCore::AsyncFileSystemCallbacks>, WebCore::AsyncFileSystem::Type = WebCore::AsyncFileSystem::Temporary, WebCore::ScriptExecutionContext* = 0, bool synchronous = false); + WebFileSystemCallbacksImpl(PassOwnPtr<WebCore::AsyncFileSystemCallbacks>, WebCore::FileSystemType = WebCore::FileSystemTypeTemporary, WebCore::ScriptExecutionContext* = 0, WebCore::FileSystemSynchronousType = WebCore::AsynchronousFileSystem); virtual ~WebFileSystemCallbacksImpl(); virtual void didSucceed(); @@ -65,11 +65,11 @@ private: OwnPtr<WebCore::AsyncFileSystemCallbacks> m_callbacks; // Used for openFileSystem callbacks. - WebCore::AsyncFileSystem::Type m_type; + WebCore::FileSystemType m_type; // Used for worker's openFileSystem callbacks. WebCore::ScriptExecutionContext* m_context; - bool m_synchronous; + WebCore::FileSystemSynchronousType m_synchronousType; }; } // namespace WebKit |