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

Unified Diff: chrome/worker/webworkerclient_proxy.cc

Issue 6613008: Update WebWorkerClientProxy to respect the "create" param. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 10 months 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/worker/webworkerclient_proxy.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/worker/webworkerclient_proxy.cc
diff --git a/chrome/worker/webworkerclient_proxy.cc b/chrome/worker/webworkerclient_proxy.cc
index c4c3e79ebf1b3cdcd02b2724888fd3ff54930d29..32f74464a865bfebb8b938f06c53dcfbaf65a7fe 100644
--- a/chrome/worker/webworkerclient_proxy.cc
+++ b/chrome/worker/webworkerclient_proxy.cc
@@ -156,10 +156,11 @@ bool WebWorkerClientProxy::allowDatabase(WebFrame* frame,
void WebWorkerClientProxy::openFileSystem(
WebKit::WebFileSystem::Type type,
long long size,
+ bool create,
WebKit::WebFileSystemCallbacks* callbacks) {
ChildThread::current()->file_system_dispatcher()->OpenFileSystem(
stub_->url().GetOrigin(), static_cast<fileapi::FileSystemType>(type),
- size, true /* create */, new WebFileSystemCallbackDispatcher(callbacks));
+ size, create, new WebFileSystemCallbackDispatcher(callbacks));
}
bool WebWorkerClientProxy::Send(IPC::Message* message) {
« no previous file with comments | « chrome/worker/webworkerclient_proxy.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698