diff options
author | kinuko@chromium.org <kinuko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-18 18:34:31 +0000 |
---|---|---|
committer | kinuko@chromium.org <kinuko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-18 18:34:31 +0000 |
commit | 9bf103edf104b4e4174a3ba22da9af6816858033 (patch) | |
tree | 96292c4e3b173a941cbf386c88780e902059c797 /webkit/support/test_webkit_client.h | |
parent | 252cad6dec04039d456e716273153951d0090b5f (diff) | |
download | chromium_src-9bf103edf104b4e4174a3ba22da9af6816858033.zip chromium_src-9bf103edf104b4e4174a3ba22da9af6816858033.tar.gz chromium_src-9bf103edf104b4e4174a3ba22da9af6816858033.tar.bz2 |
Rename WebFileSystem to WebFileUtilities for corresponding WebKit API changes.
This change depends on an upstream change (not yet rolled):
http://trac.webkit.org/changeset/65482
BUG=52355
TESTS=existing tests (like ones under fast/files) should pass
Review URL: http://codereview.chromium.org/3153015
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56564 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/support/test_webkit_client.h')
-rw-r--r-- | webkit/support/test_webkit_client.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/webkit/support/test_webkit_client.h b/webkit/support/test_webkit_client.h index 6a51ec4..24d2382 100644 --- a/webkit/support/test_webkit_client.h +++ b/webkit/support/test_webkit_client.h @@ -5,7 +5,7 @@ #ifndef WEBKIT_SUPPORT_TEST_WEBKIT_CLIENT_H_ #define WEBKIT_SUPPORT_TEST_WEBKIT_CLIENT_H_ -#include "webkit/glue/webfilesystem_impl.h" +#include "webkit/glue/webfileutilities_impl.h" #include "webkit/glue/webkitclient_impl.h" #include "webkit/support/weburl_loader_mock_factory.h" #include "webkit/tools/test_shell/mock_webclipboard_impl.h" @@ -22,7 +22,7 @@ class TestWebKitClient : public webkit_glue::WebKitClientImpl { virtual WebKit::WebMimeRegistry* mimeRegistry(); WebKit::WebClipboard* clipboard(); - virtual WebKit::WebFileSystem* fileSystem(); + virtual WebKit::WebFileUtilities* fileUtilities(); virtual WebKit::WebSandboxSupport* sandboxSupport(); virtual WebKit::WebCookieJar* cookieJar(); virtual bool sandboxEnabled(); @@ -65,7 +65,7 @@ class TestWebKitClient : public webkit_glue::WebKitClientImpl { private: TestShellWebMimeRegistryImpl mime_registry_; MockWebClipboardImpl mock_clipboard_; - webkit_glue::WebFileSystemImpl file_system_; + webkit_glue::WebFileUtilitiesImpl file_utilities_; ScopedTempDir appcache_dir_; SimpleAppCacheSystem appcache_system_; SimpleDatabaseSystem database_system_; |