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

Unified Diff: webkit/fileapi/local_file_system_operation_unittest.cc

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
Index: webkit/fileapi/local_file_system_operation_unittest.cc
diff --git a/webkit/fileapi/local_file_system_operation_unittest.cc b/webkit/fileapi/local_file_system_operation_unittest.cc
index a67b1009cfd6216259ebc7652fdf82388e34a0f7..d786406c80aa15cfef3d34d115435bdbcb3b3f00 100644
--- a/webkit/fileapi/local_file_system_operation_unittest.cc
+++ b/webkit/fileapi/local_file_system_operation_unittest.cc
@@ -262,23 +262,22 @@ class LocalFileSystemOperationTest
LocalFileSystemTestOriginHelper test_helper_;
// Callbacks for recording test results.
- FileSystemOperationInterface::StatusCallback RecordStatusCallback() {
+ FileSystemOperation::StatusCallback RecordStatusCallback() {
return base::Bind(&LocalFileSystemOperationTest::DidFinish, AsWeakPtr());
}
- FileSystemOperationInterface::ReadDirectoryCallback
+ FileSystemOperation::ReadDirectoryCallback
RecordReadDirectoryCallback() {
return base::Bind(&LocalFileSystemOperationTest::DidReadDirectory,
AsWeakPtr());
}
- FileSystemOperationInterface::GetMetadataCallback RecordMetadataCallback() {
+ FileSystemOperation::GetMetadataCallback RecordMetadataCallback() {
return base::Bind(&LocalFileSystemOperationTest::DidGetMetadata,
AsWeakPtr());
}
- FileSystemOperationInterface::SnapshotFileCallback
- RecordSnapshotFileCallback() {
+ FileSystemOperation::SnapshotFileCallback RecordSnapshotFileCallback() {
return base::Bind(&LocalFileSystemOperationTest::DidCreateSnapshotFile,
AsWeakPtr());
}
« no previous file with comments | « webkit/fileapi/local_file_system_operation.h ('k') | webkit/fileapi/local_file_system_operation_write_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698