diff options
author | kkanetkar@chromium.org <kkanetkar@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-03 01:34:49 +0000 |
---|---|---|
committer | kkanetkar@chromium.org <kkanetkar@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-03 01:34:49 +0000 |
commit | d275d7aeb039564c79f05649523e38720b293a0e (patch) | |
tree | 2ae3304c51e6f0c66a1e75109dab8596e93d70fe /webkit/tools | |
parent | dbe774304940321f26d0dcb9a29b24f0294415dc (diff) | |
download | chromium_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 'webkit/tools')
-rw-r--r-- | webkit/tools/test_shell/test_webview_delegate.cc | 2 | ||||
-rw-r--r-- | webkit/tools/test_shell/test_webview_delegate.h | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/webkit/tools/test_shell/test_webview_delegate.cc b/webkit/tools/test_shell/test_webview_delegate.cc index a5a76ed..9bbf1a6 100644 --- a/webkit/tools/test_shell/test_webview_delegate.cc +++ b/webkit/tools/test_shell/test_webview_delegate.cc @@ -1122,7 +1122,7 @@ bool TestWebViewDelegate::allowScript(WebFrame* frame, } void TestWebViewDelegate::openFileSystem( - WebFrame* frame, WebFileSystem::Type type, long long size, + WebFrame* frame, WebFileSystem::Type type, long long size, bool create, WebFileSystemCallbacks* callbacks) { if (shell_->file_system_root().empty()) { // The FileSystem temp directory was not initialized successfully. diff --git a/webkit/tools/test_shell/test_webview_delegate.h b/webkit/tools/test_shell/test_webview_delegate.h index 32e0094..c63cb9f 100644 --- a/webkit/tools/test_shell/test_webview_delegate.h +++ b/webkit/tools/test_shell/test_webview_delegate.h @@ -232,6 +232,7 @@ class TestWebViewDelegate : public WebKit::WebViewClient, WebKit::WebFrame* frame, WebKit::WebFileSystem::Type type, long long size, + bool create, WebKit::WebFileSystemCallbacks* callbacks); // webkit_glue::WebPluginPageDelegate |