Index: content/renderer/render_view_impl.cc |
=================================================================== |
--- content/renderer/render_view_impl.cc (revision 188767) |
+++ content/renderer/render_view_impl.cc (working copy) |
@@ -125,6 +125,7 @@ |
#include "third_party/skia/include/core/SkPicture.h" |
#include "third_party/WebKit/Source/Platform/chromium/public/WebCString.h" |
#include "third_party/WebKit/Source/Platform/chromium/public/WebDragData.h" |
+#include "third_party/WebKit/Source/Platform/chromium/public/WebFileSystemType.h" |
#include "third_party/WebKit/Source/Platform/chromium/public/WebHTTPBody.h" |
#include "third_party/WebKit/Source/Platform/chromium/public/WebImage.h" |
#include "third_party/WebKit/Source/Platform/chromium/public/WebMessagePortChannel.h" |
@@ -4222,7 +4223,11 @@ |
void RenderViewImpl::openFileSystem( |
WebFrame* frame, |
+#ifdef WEBKIT_USE_NEW_WEBFILESYSTEMTYPE |
+ WebKit::WebFileSystemType type, |
+#else |
WebFileSystem::Type type, |
+#endif |
long long size, |
bool create, |
WebFileSystemCallbacks* callbacks) { |
@@ -4242,7 +4247,11 @@ |
void RenderViewImpl::deleteFileSystem( |
WebFrame* frame, |
+#ifdef WEBKIT_USE_NEW_WEBFILESYSTEMTYPE |
+ WebKit::WebFileSystemType type , |
+#else |
WebFileSystem::Type type , |
+#endif |
WebFileSystemCallbacks* callbacks) { |
DCHECK(callbacks); |