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

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

Issue 1042803002: Drive: Move inner structures of DriveAPIService under drive namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix tests. Created 5 years, 9 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
« no previous file with comments | « no previous file | chrome/browser/chromeos/drive/file_system/search_operation_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/drive/file_system/copy_operation_unittest.cc
diff --git a/chrome/browser/chromeos/drive/file_system/copy_operation_unittest.cc b/chrome/browser/chromeos/drive/file_system/copy_operation_unittest.cc
index 5a04cb035cbd3471965e53abe5c76c8570f9c218..c58637ca27c14483171e9e3010cb6000a7a36c7d 100644
--- a/chrome/browser/chromeos/drive/file_system/copy_operation_unittest.cc
+++ b/chrome/browser/chromeos/drive/file_system/copy_operation_unittest.cc
@@ -485,11 +485,10 @@ TEST_F(CopyOperationTest, WaitForSyncComplete) {
google_apis::DriveApiErrorCode status = google_apis::DRIVE_OTHER_ERROR;
scoped_ptr<google_apis::FileResource> file_resource;
fake_service()->AddNewDirectory(
- directory_parent.resource_id(),
- directory.title(),
- DriveServiceInterface::AddNewDirectoryOptions(),
- google_apis::test_util::CreateCopyResultCallback(
- &status, &file_resource));
+ directory_parent.resource_id(), directory.title(),
+ AddNewDirectoryOptions(),
+ google_apis::test_util::CreateCopyResultCallback(&status,
+ &file_resource));
content::RunAllBlockingPoolTasksUntilIdle();
EXPECT_EQ(google_apis::HTTP_CREATED, status);
ASSERT_TRUE(file_resource);
« no previous file with comments | « no previous file | chrome/browser/chromeos/drive/file_system/search_operation_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698