Index: webkit/support/webkit_support.h |
=================================================================== |
--- webkit/support/webkit_support.h (revision 188767) |
+++ webkit/support/webkit_support.h (working copy) |
@@ -10,6 +10,7 @@ |
#include "base/basictypes.h" |
#include "third_party/WebKit/Source/Platform/chromium/public/Platform.h" |
#include "third_party/WebKit/Source/Platform/chromium/public/WebFileSystem.h" |
+#include "third_party/WebKit/Source/Platform/chromium/public/WebFileSystemType.h" |
#include "third_party/WebKit/Source/Platform/chromium/public/WebGraphicsContext3D.h" |
#include "third_party/WebKit/Source/Platform/chromium/public/WebReferrerPolicy.h" |
#include "third_party/WebKit/Source/Platform/chromium/public/WebURLRequest.h" |
@@ -269,12 +270,20 @@ |
// - FileSystem |
void OpenFileSystem(WebKit::WebFrame* frame, |
+#ifdef WEBKIT_USE_NEW_WEBFILESYSTEMTYPE |
+ WebKit::WebFileSystemType type, |
+#else |
WebKit::WebFileSystem::Type type, |
+#endif |
long long size, |
bool create, |
WebKit::WebFileSystemCallbacks* callbacks); |
void DeleteFileSystem(WebKit::WebFrame* frame, |
+#ifdef WEBKIT_USE_NEW_WEBFILESYSTEMTYPE |
+ WebKit::WebFileSystemType type, |
+#else |
WebKit::WebFileSystem::Type type, |
+#endif |
WebKit::WebFileSystemCallbacks* callbacks); |
// Returns a filesystem ID for the newly created isolated filesystem. |