| 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);
|
|
|