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

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

Issue 9558006: Rename content/{common,browser}/file_system to fileapi and move blob stuff into it. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 10 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
Index: content/common/file_system/webfilesystem_impl.h
diff --git a/content/common/file_system/webfilesystem_impl.h b/content/common/file_system/webfilesystem_impl.h
deleted file mode 100644
index 5643f35b12f5e27a28d3c1b22798e7df31d3f974..0000000000000000000000000000000000000000
--- a/content/common/file_system/webfilesystem_impl.h
+++ /dev/null
@@ -1,66 +0,0 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef CONTENT_COMMON_FILE_SYSTEM_WEBFILESYSTEM_IMPL_H_
-#define CONTENT_COMMON_FILE_SYSTEM_WEBFILESYSTEM_IMPL_H_
-
-#include "base/basictypes.h"
-#include "base/compiler_specific.h"
-#include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebFileSystem.h"
-
-namespace WebKit {
-class WebURL;
-class WebFileWriter;
-class WebFileWriterClient;
-}
-
-class WebFileSystemImpl : public WebKit::WebFileSystem {
- public:
- WebFileSystemImpl();
- virtual ~WebFileSystemImpl() { }
-
- // WebFileSystem implementation.
- virtual void move(
- const WebKit::WebURL& src_path,
- const WebKit::WebURL& dest_path,
- WebKit::WebFileSystemCallbacks*) OVERRIDE;
- virtual void copy(
- const WebKit::WebURL& src_path,
- const WebKit::WebURL& dest_path,
- WebKit::WebFileSystemCallbacks*) OVERRIDE;
- virtual void remove(
- const WebKit::WebURL& path,
- WebKit::WebFileSystemCallbacks*) OVERRIDE;
- virtual void removeRecursively(
- const WebKit::WebURL& path,
- WebKit::WebFileSystemCallbacks*) OVERRIDE;
- virtual void readMetadata(
- const WebKit::WebURL& path,
- WebKit::WebFileSystemCallbacks*) OVERRIDE;
- virtual void createFile(
- const WebKit::WebURL& path,
- bool exclusive,
- WebKit::WebFileSystemCallbacks*) OVERRIDE;
- virtual void createDirectory(
- const WebKit::WebURL& path,
- bool exclusive,
- WebKit::WebFileSystemCallbacks*) OVERRIDE;
- virtual void fileExists(
- const WebKit::WebURL& path,
- WebKit::WebFileSystemCallbacks*) OVERRIDE;
- virtual void directoryExists(
- const WebKit::WebURL& path,
- WebKit::WebFileSystemCallbacks*) OVERRIDE;
- virtual void readDirectory(
- const WebKit::WebURL& path,
- WebKit::WebFileSystemCallbacks*) OVERRIDE;
- virtual WebKit::WebFileWriter* createFileWriter(
- const WebKit::WebURL& path, WebKit::WebFileWriterClient*) OVERRIDE;
- virtual void createSnapshotFileAndReadMetadata(
- const WebKit::WebURL& blobURL,
- const WebKit::WebURL& path,
- WebKit::WebFileSystemCallbacks*) OVERRIDE;
-};
-
-#endif // CONTENT_COMMON_FILE_SYSTEM_WEBFILESYSTEM_IMPL_H_

Powered by Google App Engine
This is Rietveld 408576698