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

Unified Diff: chrome/browser/ui/webui/chromeos/drive_internals_ui.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/ui/webui/chromeos/drive_internals_ui.cc
diff --git a/chrome/browser/ui/webui/chromeos/drive_internals_ui.cc b/chrome/browser/ui/webui/chromeos/drive_internals_ui.cc
index f4fdc0d077cd9ae1c0f33d7ee9a59944d898ee54..7557f24efcfe98132dbe352e5416ce8a44d28289 100644
--- a/chrome/browser/ui/webui/chromeos/drive_internals_ui.cc
+++ b/chrome/browser/ui/webui/chromeos/drive_internals_ui.cc
@@ -33,8 +33,8 @@
#include "content/public/browser/web_ui_data_source.h"
#include "content/public/browser/web_ui_message_handler.h"
#include "google_apis/drive/auth_service.h"
+#include "google_apis/drive/drive_api_error_codes.h"
#include "google_apis/drive/drive_api_parser.h"
-#include "google_apis/drive/gdata_errorcode.h"
#include "google_apis/drive/time_util.h"
#include "grit/browser_resources.h"
@@ -272,12 +272,12 @@ class DriveInternalsWebUIHandler : public content::WebUIMessageHandler {
// Called when GetAboutResource() call to DriveService is complete.
void OnGetAboutResource(
- google_apis::GDataErrorCode status,
+ google_apis::DriveApiErrorCode status,
scoped_ptr<google_apis::AboutResource> about_resource);
// Called when GetAppList() call to DriveService is complete.
void OnGetAppList(
- google_apis::GDataErrorCode status,
+ google_apis::DriveApiErrorCode status,
scoped_ptr<google_apis::AppList> app_list);
// Callback for DebugInfoCollector::GetMetadata for local update.
@@ -308,7 +308,7 @@ class DriveInternalsWebUIHandler : public content::WebUIMessageHandler {
};
void DriveInternalsWebUIHandler::OnGetAboutResource(
- google_apis::GDataErrorCode status,
+ google_apis::DriveApiErrorCode status,
scoped_ptr<google_apis::AboutResource> parsed_about_resource) {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
@@ -332,7 +332,7 @@ void DriveInternalsWebUIHandler::OnGetAboutResource(
}
void DriveInternalsWebUIHandler::OnGetAppList(
- google_apis::GDataErrorCode status,
+ google_apis::DriveApiErrorCode status,
scoped_ptr<google_apis::AppList> parsed_app_list) {
DCHECK_CURRENTLY_ON(BrowserThread::UI);

Powered by Google App Engine
This is Rietveld 408576698