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

Unified Diff: chrome/browser/chromeos/drive/file_system/update_operation_unittest.cc

Issue 15650008: drive: Rename drive::DriveClientContext to drive::ClientContext (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 7 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: chrome/browser/chromeos/drive/file_system/update_operation_unittest.cc
diff --git a/chrome/browser/chromeos/drive/file_system/update_operation_unittest.cc b/chrome/browser/chromeos/drive/file_system/update_operation_unittest.cc
index 5cb1b129bfd837ebacab8eed302b49826cb2f3d7..f1ab138df04d9dd663739bcfb3a16003429ef1da 100644
--- a/chrome/browser/chromeos/drive/file_system/update_operation_unittest.cc
+++ b/chrome/browser/chromeos/drive/file_system/update_operation_unittest.cc
@@ -81,7 +81,7 @@ TEST_F(UpdateOperationTest, UpdateFileByResourceId_PersistentFile) {
error = FILE_ERROR_FAILED;
operation_->UpdateFileByResourceId(
kResourceId,
- DriveClientContext(USER_INITIATED),
+ ClientContext(USER_INITIATED),
google_apis::test_util::CreateCopyResultCallback(&error));
google_apis::test_util::RunBlockingPoolTask();
EXPECT_EQ(FILE_ERROR_OK, error);
@@ -106,7 +106,7 @@ TEST_F(UpdateOperationTest, UpdateFileByResourceId_NonexistentFile) {
FileError error = FILE_ERROR_OK;
operation_->UpdateFileByResourceId(
"file:nonexistent_resource_id",
- DriveClientContext(USER_INITIATED),
+ ClientContext(USER_INITIATED),
google_apis::test_util::CreateCopyResultCallback(&error));
google_apis::test_util::RunBlockingPoolTask();
EXPECT_EQ(FILE_ERROR_NOT_FOUND, error);
« no previous file with comments | « chrome/browser/chromeos/drive/file_system/update_operation.cc ('k') | chrome/browser/chromeos/drive/file_system_interface.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698