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

Unified Diff: google_apis/drive/base_requests_server_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: google_apis/drive/base_requests_server_unittest.cc
diff --git a/google_apis/drive/base_requests_server_unittest.cc b/google_apis/drive/base_requests_server_unittest.cc
index b00acc1fd670b8454a0a7fe3342bc84ec8ee9002..1a8111bace69bd3af5d6458eab303a3f79668a9d 100644
--- a/google_apis/drive/base_requests_server_unittest.cc
+++ b/google_apis/drive/base_requests_server_unittest.cc
@@ -70,7 +70,7 @@ class BaseRequestsServerTest : public testing::Test {
};
TEST_F(BaseRequestsServerTest, DownloadFileRequest_ValidFile) {
- GDataErrorCode result_code = GDATA_OTHER_ERROR;
+ DriveApiErrorCode result_code = DRIVE_OTHER_ERROR;
base::FilePath temp_file;
{
base::RunLoop run_loop;
@@ -104,7 +104,7 @@ TEST_F(BaseRequestsServerTest, DownloadFileRequest_ValidFile) {
}
TEST_F(BaseRequestsServerTest, DownloadFileRequest_NonExistentFile) {
- GDataErrorCode result_code = GDATA_OTHER_ERROR;
+ DriveApiErrorCode result_code = DRIVE_OTHER_ERROR;
base::FilePath temp_file;
{
base::RunLoop run_loop;

Powered by Google App Engine
This is Rietveld 408576698