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

Unified Diff: chrome/browser/drive/drive_app_registry.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/drive/drive_app_registry.cc
diff --git a/chrome/browser/drive/drive_app_registry.cc b/chrome/browser/drive/drive_app_registry.cc
index 45ad6c22381f4be30b99d58deb5b59e6efdcc907..eb75c9ba27477565b8af0d5cfc10c13f82eec9a9 100644
--- a/chrome/browser/drive/drive_app_registry.cc
+++ b/chrome/browser/drive/drive_app_registry.cc
@@ -132,7 +132,7 @@ void DriveAppRegistry::Update() {
}
void DriveAppRegistry::UpdateAfterGetAppList(
- google_apis::GDataErrorCode gdata_error,
+ google_apis::DriveApiErrorCode gdata_error,
scoped_ptr<google_apis::AppList> app_list) {
DCHECK(thread_checker_.CalledOnValidThread());
@@ -211,7 +211,7 @@ void DriveAppRegistry::UninstallApp(const std::string& app_id,
void DriveAppRegistry::OnAppUninstalled(const std::string& app_id,
const UninstallCallback& callback,
- google_apis::GDataErrorCode error) {
+ google_apis::DriveApiErrorCode error) {
if (error == google_apis::HTTP_NO_CONTENT) {
all_apps_.erase(app_id);
RemoveAppFromSelector(app_id, &mimetype_map_);

Powered by Google App Engine
This is Rietveld 408576698