summaryrefslogtreecommitdiffstats
path: root/webkit/tools
diff options
context:
space:
mode:
authorkinuko@chromium.org <kinuko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-09-16 22:18:39 +0000
committerkinuko@chromium.org <kinuko@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-09-16 22:18:39 +0000
commit761315b2355f5d9a31e1ac73966f5c083f8de09a (patch)
tree53c794defd88d8e190340bb8524ed424e914642c /webkit/tools
parente520de1f48940b70487e56b88a70311091432783 (diff)
downloadchromium_src-761315b2355f5d9a31e1ac73966f5c083f8de09a.zip
chromium_src-761315b2355f5d9a31e1ac73966f5c083f8de09a.tar.gz
chromium_src-761315b2355f5d9a31e1ac73966f5c083f8de09a.tar.bz2
Fix SimpleFileSystem.getMetadata to readMetadata
BUG=52799 TEST=none Review URL: http://codereview.chromium.org/3441010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@59740 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/tools')
-rw-r--r--webkit/tools/test_shell/simple_file_system.cc2
-rw-r--r--webkit/tools/test_shell/simple_file_system.h3
2 files changed, 2 insertions, 3 deletions
diff --git a/webkit/tools/test_shell/simple_file_system.cc b/webkit/tools/test_shell/simple_file_system.cc
index 11da52c..a5524db 100644
--- a/webkit/tools/test_shell/simple_file_system.cc
+++ b/webkit/tools/test_shell/simple_file_system.cc
@@ -54,7 +54,7 @@ void SimpleFileSystem::remove(
GetNewOperation(callbacks)->Remove(filepath);
}
-void SimpleFileSystem::getMetadata(
+void SimpleFileSystem::readMetadata(
const WebString& path, WebFileSystemCallbacks* callbacks) {
FilePath filepath(webkit_glue::WebStringToFilePath(path));
diff --git a/webkit/tools/test_shell/simple_file_system.h b/webkit/tools/test_shell/simple_file_system.h
index b3487c6..947f804 100644
--- a/webkit/tools/test_shell/simple_file_system.h
+++ b/webkit/tools/test_shell/simple_file_system.h
@@ -53,7 +53,7 @@ class SimpleFileSystem
WebKit::WebFileSystemCallbacks* callbacks);
virtual void remove(const WebKit::WebString& path,
WebKit::WebFileSystemCallbacks* callbacks);
- virtual void getMetadata(const WebKit::WebString& path,
+ virtual void readMetadata(const WebKit::WebString& path,
WebKit::WebFileSystemCallbacks* callbacks);
virtual void createFile(const WebKit::WebString& path, bool exclusive,
WebKit::WebFileSystemCallbacks* callbacks);
@@ -92,4 +92,3 @@ class SimpleFileSystem
};
#endif // WEBKIT_TOOLS_TEST_SHELL_SIMPLE_FILE_SYSTEM_H_
-