| 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..36b31018785c89fc772262bd569f7317970428ad 100644
|
| --- a/webkit/fileapi/file_system_operation_interface.h
|
| +++ b/webkit/fileapi/file_system_operation.h
|
| @@ -2,8 +2,8 @@
|
| // 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>
|
|
|
| @@ -53,9 +53,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 +278,4 @@ class FileSystemOperationInterface {
|
|
|
| } // namespace fileapi
|
|
|
| -#endif // WEBKIT_FILEAPI_FILE_SYSTEM_OPERATION_INTERFACE_H_
|
| +#endif // WEBKIT_FILEAPI_FILE_SYSTEM_OPERATION_H_
|
|
|