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

Unified Diff: webkit/fileapi/file_system_operation.h

Issue 10870040: Rename FileSystemOperationInterface to FileSystemOperation (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixing Created 8 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 | « webkit/fileapi/file_system_mount_point_provider.h ('k') | webkit/fileapi/file_system_operation_interface.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/fileapi/file_system_operation.h
diff --git a/webkit/fileapi/file_system_operation_interface.h b/webkit/fileapi/file_system_operation.h
similarity index 97%
rename from webkit/fileapi/file_system_operation_interface.h
rename to webkit/fileapi/file_system_operation.h
index 7ea0ae1f324e4bdc702be456f9fa17d025e2b8e8..26db7936d4362119e836d541c3f42cdf45abb2b4 100644
--- a/webkit/fileapi/file_system_operation_interface.h
+++ b/webkit/fileapi/file_system_operation.h
@@ -2,15 +2,14 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef WEBKIT_FILEAPI_FILE_SYSTEM_OPERATION_INTERFACE_H_
-#define WEBKIT_FILEAPI_FILE_SYSTEM_OPERATION_INTERFACE_H_
+#ifndef WEBKIT_FILEAPI_FILE_SYSTEM_OPERATION_H_
+#define WEBKIT_FILEAPI_FILE_SYSTEM_OPERATION_H_
#include <vector>
#include "base/file_util_proxy.h"
#include "base/platform_file.h"
#include "base/process.h"
-#include "webkit/blob/shareable_file_reference.h"
namespace base {
class Time;
@@ -53,9 +52,9 @@ class LocalFileSystemOperation;
// 3) Deliver the results of operations to the client via the callback function
// passed as the last parameter of the method.
//
-class FileSystemOperationInterface {
+class FileSystemOperation {
public:
- virtual ~FileSystemOperationInterface() {}
+ virtual ~FileSystemOperation() {}
// Used for CreateFile(), etc. |result| is the return code of the operation.
typedef base::Callback<void(base::PlatformFileError result)> StatusCallback;
@@ -278,4 +277,4 @@ class FileSystemOperationInterface {
} // namespace fileapi
-#endif // WEBKIT_FILEAPI_FILE_SYSTEM_OPERATION_INTERFACE_H_
+#endif // WEBKIT_FILEAPI_FILE_SYSTEM_OPERATION_H_
« no previous file with comments | « webkit/fileapi/file_system_mount_point_provider.h ('k') | webkit/fileapi/file_system_operation_interface.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698