Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(197)

Unified Diff: chrome/renderer/render_view.cc

Issue 4350001: Added ability to propogate create to suggest whether or not filesystem's root... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/renderer/render_view.h ('k') | chrome/worker/webworkerclient_proxy.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/render_view.cc
===================================================================
--- chrome/renderer/render_view.cc (revision 64803)
+++ chrome/renderer/render_view.cc (working copy)
@@ -3688,6 +3688,7 @@
WebFrame* frame,
WebFileSystem::Type type,
long long size,
+ bool create,
WebFileSystemCallbacks* callbacks) {
DCHECK(callbacks);
@@ -3700,7 +3701,7 @@
ChildThread::current()->file_system_dispatcher()->OpenFileSystem(
GURL(origin.toString()), static_cast<fileapi::FileSystemType>(type),
- size, new WebFileSystemCallbackDispatcher(callbacks));
+ size, create, new WebFileSystemCallbackDispatcher(callbacks));
}
// webkit_glue::WebPluginPageDelegate -----------------------------------------
« no previous file with comments | « chrome/renderer/render_view.h ('k') | chrome/worker/webworkerclient_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698