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

Unified Diff: content/common/file_system/webfilesystem_impl.cc

Issue 7820005: Clean up old dead code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 4 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 | « content/common/file_system/webfilesystem_impl.h ('k') | webkit/fileapi/file_system_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/file_system/webfilesystem_impl.cc
diff --git a/content/common/file_system/webfilesystem_impl.cc b/content/common/file_system/webfilesystem_impl.cc
index 977bec4aeee1133ee0e954b9bc2274eb444b5ad7..7f7099bdb1d381313f32a2cf2c6cde8fd0f0154c 100644
--- a/content/common/file_system/webfilesystem_impl.cc
+++ b/content/common/file_system/webfilesystem_impl.cc
@@ -116,64 +116,3 @@ WebKit::WebFileWriter* WebFileSystemImpl::createFileWriter(
const WebURL& path, WebKit::WebFileWriterClient* client) {
return new WebFileWriterImpl(GURL(path), client);
}
-
-// These are temporary shims to link up the old calls to the new implementation.
-// They'll go away as soon as the webkit side gets updated.
-void WebFileSystemImpl::move(const WebString& src_path,
- const WebString& dest_path,
- WebFileSystemCallbacks* callbacks) {
- move(GURL(src_path), GURL(dest_path), callbacks);
-}
-
-void WebFileSystemImpl::copy(const WebString& src_path,
- const WebString& dest_path,
- WebFileSystemCallbacks* callbacks) {
- copy(GURL(src_path), GURL(dest_path), callbacks);
-}
-
-void WebFileSystemImpl::remove(const WebString& path,
- WebFileSystemCallbacks* callbacks) {
- remove(GURL(path), callbacks);
-}
-
-void WebFileSystemImpl::removeRecursively(const WebString& path,
- WebFileSystemCallbacks* callbacks) {
- removeRecursively(GURL(path), callbacks);
-}
-
-void WebFileSystemImpl::readMetadata(const WebString& path,
- WebFileSystemCallbacks* callbacks) {
- readMetadata(GURL(path), callbacks);
-}
-
-void WebFileSystemImpl::createFile(const WebString& path,
- bool exclusive,
- WebFileSystemCallbacks* callbacks) {
- createFile(GURL(path), exclusive, callbacks);
-}
-
-void WebFileSystemImpl::createDirectory(const WebString& path,
- bool exclusive,
- WebFileSystemCallbacks* callbacks) {
- createDirectory(GURL(path), exclusive, callbacks);
-}
-
-void WebFileSystemImpl::fileExists(const WebString& path,
- WebFileSystemCallbacks* callbacks) {
- fileExists(GURL(path), callbacks);
-}
-
-void WebFileSystemImpl::directoryExists(const WebString& path,
- WebFileSystemCallbacks* callbacks) {
- directoryExists(GURL(path), callbacks);
-}
-
-void WebFileSystemImpl::readDirectory(const WebString& path,
- WebFileSystemCallbacks* callbacks) {
- readDirectory(GURL(path), callbacks);
-}
-
-WebKit::WebFileWriter* WebFileSystemImpl::createFileWriter(
- const WebString& path, WebKit::WebFileWriterClient* client) {
- return createFileWriter(GURL(path), client);
-}
« no previous file with comments | « content/common/file_system/webfilesystem_impl.h ('k') | webkit/fileapi/file_system_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698