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

Unified Diff: chrome/browser/chromeos/drive/sync/entry_update_performer_unittest.cc

Issue 881403003: Rename gdata_errorcode.h to drive_api_error_codes.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix typos in BUILD.gn Created 5 years, 11 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/sync/entry_update_performer_unittest.cc
diff --git a/chrome/browser/chromeos/drive/sync/entry_update_performer_unittest.cc b/chrome/browser/chromeos/drive/sync/entry_update_performer_unittest.cc
index 7dcd1c2772c2a5cbb39a9c4a31798233fee526ce..48a0acb02a82a412b157904844e88730d20fbc06 100644
--- a/chrome/browser/chromeos/drive/sync/entry_update_performer_unittest.cc
+++ b/chrome/browser/chromeos/drive/sync/entry_update_performer_unittest.cc
@@ -105,7 +105,7 @@ TEST_F(EntryUpdatePerformerTest, UpdateEntry) {
EXPECT_EQ(FILE_ERROR_OK, error);
// Verify the file is updated on the server.
- google_apis::GDataErrorCode gdata_error = google_apis::GDATA_OTHER_ERROR;
+ google_apis::DriveApiErrorCode gdata_error = google_apis::DRIVE_OTHER_ERROR;
scoped_ptr<google_apis::FileResource> gdata_entry;
fake_service()->GetFileResource(
src_entry.resource_id(),
@@ -171,7 +171,7 @@ TEST_F(EntryUpdatePerformerTest, UpdateEntry_WithNonDirtyCache) {
EXPECT_EQ(FILE_ERROR_OK, error);
// Verify the file is updated on the server.
- google_apis::GDataErrorCode gdata_error = google_apis::GDATA_OTHER_ERROR;
+ google_apis::DriveApiErrorCode gdata_error = google_apis::DRIVE_OTHER_ERROR;
scoped_ptr<google_apis::FileResource> gdata_entry;
fake_service()->GetFileResource(
src_entry->resource_id(),
@@ -220,7 +220,7 @@ TEST_F(EntryUpdatePerformerTest, UpdateEntry_ContentUpdate) {
fake_service()->about_resource().largest_change_id());
// Check that the file size is updated to that of the updated content.
- google_apis::GDataErrorCode gdata_error = google_apis::GDATA_OTHER_ERROR;
+ google_apis::DriveApiErrorCode gdata_error = google_apis::DRIVE_OTHER_ERROR;
scoped_ptr<google_apis::FileResource> server_entry;
fake_service()->GetFileResource(
kResourceId,
@@ -264,7 +264,7 @@ TEST_F(EntryUpdatePerformerTest, UpdateEntry_ContentUpdateMd5Check) {
fake_service()->about_resource().largest_change_id());
// Check that the file size is updated to that of the updated content.
- google_apis::GDataErrorCode gdata_error = google_apis::GDATA_OTHER_ERROR;
+ google_apis::DriveApiErrorCode gdata_error = google_apis::DRIVE_OTHER_ERROR;
scoped_ptr<google_apis::FileResource> server_entry;
fake_service()->GetFileResource(
kResourceId,
@@ -414,7 +414,7 @@ TEST_F(EntryUpdatePerformerTest, UpdateEntry_UploadNewFile) {
EXPECT_FALSE(entry.file_specific_info().cache_state().is_dirty());
// Make sure that we really created a file.
- google_apis::GDataErrorCode status = google_apis::GDATA_OTHER_ERROR;
+ google_apis::DriveApiErrorCode status = google_apis::DRIVE_OTHER_ERROR;
scoped_ptr<google_apis::FileResource> server_entry;
fake_service()->GetFileResource(
entry.resource_id(),
@@ -540,7 +540,7 @@ TEST_F(EntryUpdatePerformerTest, UpdateEntry_CreateDirectory) {
EXPECT_EQ(ResourceEntry::CLEAN, entry.metadata_edit_state());
// Make sure that we really created a directory.
- google_apis::GDataErrorCode status = google_apis::GDATA_OTHER_ERROR;
+ google_apis::DriveApiErrorCode status = google_apis::DRIVE_OTHER_ERROR;
scoped_ptr<google_apis::FileResource> server_entry;
fake_service()->GetFileResource(
entry.resource_id(),

Powered by Google App Engine
This is Rietveld 408576698