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

Unified Diff: content/common_child/fileapi/webfilesystem_impl.h

Issue 16325022: move content/common_child to content/child (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 6 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_child/fileapi/webfilesystem_impl.h
diff --git a/content/common_child/fileapi/webfilesystem_impl.h b/content/common_child/fileapi/webfilesystem_impl.h
deleted file mode 100644
index e880c5bfc0b88f289bfd4bcbe7f232edbaaa19dc..0000000000000000000000000000000000000000
--- a/content/common_child/fileapi/webfilesystem_impl.h
+++ /dev/null
@@ -1,69 +0,0 @@
-// Copyright (c) 2012 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_CHILD_FILEAPI_WEBFILESYSTEM_IMPL_H_
-#define CONTENT_COMMON_CHILD_FILEAPI_WEBFILESYSTEM_IMPL_H_
-
-#include "base/basictypes.h"
-#include "base/compiler_specific.h"
-#include "third_party/WebKit/public/platform/WebFileSystem.h"
-
-namespace WebKit {
-class WebURL;
-class WebFileWriter;
-class WebFileWriterClient;
-}
-
-namespace content {
-
-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& path,
- WebKit::WebFileSystemCallbacks*);
-};
-
-} // namespace content
-
-#endif // CONTENT_COMMON_CHILD_FILEAPI_WEBFILESYSTEM_IMPL_H_
« no previous file with comments | « content/common_child/fileapi/webfilesystem_callback_adapters.cc ('k') | content/common_child/fileapi/webfilesystem_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698