summaryrefslogtreecommitdiffstats
path: root/chrome/worker
diff options
context:
space:
mode:
authorkkanetkar@chromium.org <kkanetkar@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-11-03 01:34:49 +0000
committerkkanetkar@chromium.org <kkanetkar@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-11-03 01:34:49 +0000
commitd275d7aeb039564c79f05649523e38720b293a0e (patch)
tree2ae3304c51e6f0c66a1e75109dab8596e93d70fe /chrome/worker
parentdbe774304940321f26d0dcb9a29b24f0294415dc (diff)
downloadchromium_src-d275d7aeb039564c79f05649523e38720b293a0e.zip
chromium_src-d275d7aeb039564c79f05649523e38720b293a0e.tar.gz
chromium_src-d275d7aeb039564c79f05649523e38720b293a0e.tar.bz2
Added ability to propogate create to suggest whether or not filesystem's root should
be created if the path doesn't exist. BUG=None TEST=None Review URL: http://codereview.chromium.org/4350001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@64862 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/worker')
-rw-r--r--chrome/worker/webworkerclient_proxy.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/worker/webworkerclient_proxy.cc b/chrome/worker/webworkerclient_proxy.cc
index e2ecf5a..9b56725 100644
--- a/chrome/worker/webworkerclient_proxy.cc
+++ b/chrome/worker/webworkerclient_proxy.cc
@@ -130,7 +130,7 @@ void WebWorkerClientProxy::openFileSystem(
WebKit::WebFileSystemCallbacks* callbacks) {
ChildThread::current()->file_system_dispatcher()->OpenFileSystem(
stub_->url().GetOrigin(), static_cast<fileapi::FileSystemType>(type),
- size, new WebFileSystemCallbackDispatcher(callbacks));
+ size, true /* create */, new WebFileSystemCallbackDispatcher(callbacks));
}
bool WebWorkerClientProxy::Send(IPC::Message* message) {