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

Unified Diff: webkit/fileapi/local_file_system_operation_write_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_write_unittest.cc
diff --git a/webkit/fileapi/local_file_system_operation_write_unittest.cc b/webkit/fileapi/local_file_system_operation_write_unittest.cc
index d715fd4a96fb93272d8d8870cf5f70ca9c895768..cd1950a40e3c71188741cbe3814709d6ecf9e0a3 100644
--- a/webkit/fileapi/local_file_system_operation_write_unittest.cc
+++ b/webkit/fileapi/local_file_system_operation_write_unittest.cc
@@ -99,12 +99,12 @@ class LocalFileSystemOperationWriteTest
}
// Callback function for recording test results.
- FileSystemOperationInterface::WriteCallback RecordWriteCallback() {
+ FileSystemOperation::WriteCallback RecordWriteCallback() {
return base::Bind(&LocalFileSystemOperationWriteTest::DidWrite,
AsWeakPtr());
}
- FileSystemOperationInterface::StatusCallback RecordCancelCallback() {
+ FileSystemOperation::StatusCallback RecordCancelCallback() {
return base::Bind(&LocalFileSystemOperationWriteTest::DidCancel,
AsWeakPtr());
}
@@ -357,7 +357,7 @@ TEST_F(LocalFileSystemOperationWriteTest, TestImmediateCancelSuccessfulWrite) {
url_request_context.blob_storage_controller()->AddFinishedBlob(
blob_url, blob_data);
- FileSystemOperationInterface* write_operation = operation();
+ FileSystemOperation* write_operation = operation();
write_operation->Write(&url_request_context, URLForPath(virtual_path_),
blob_url, 0, RecordWriteCallback());
write_operation->Cancel(RecordCancelCallback());
@@ -385,7 +385,7 @@ TEST_F(LocalFileSystemOperationWriteTest, TestImmediateCancelFailingWrite) {
url_request_context.blob_storage_controller()->AddFinishedBlob(
blob_url, blob_data);
- FileSystemOperationInterface* write_operation = operation();
+ FileSystemOperation* write_operation = operation();
write_operation->Write(&url_request_context,
URLForPath(FilePath(FILE_PATH_LITERAL("nonexist"))),
blob_url, 0, RecordWriteCallback());
« no previous file with comments | « webkit/fileapi/local_file_system_operation_unittest.cc ('k') | webkit/fileapi/local_file_system_quota_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698