| 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);
|
|
|
|
|