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

Unified Diff: chrome/browser/drive/drive_api_service.cc

Issue 127463004: Add UninstallApp() method to DriveAPIService interface. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: null Created 6 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
« no previous file with comments | « chrome/browser/drive/drive_api_service.h ('k') | chrome/browser/drive/drive_service_interface.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/drive/drive_api_service.cc
diff --git a/chrome/browser/drive/drive_api_service.cc b/chrome/browser/drive/drive_api_service.cc
index e7336473639eacf639a802c82aa3a7851c548e9c..6ded526202bf61e3cf7bb914054eef862f0990e5 100644
--- a/chrome/browser/drive/drive_api_service.cc
+++ b/chrome/browser/drive/drive_api_service.cc
@@ -792,6 +792,17 @@ CancelCallback DriveAPIService::AuthorizeApp(
return sender_->StartRequestWithRetry(request);
}
+CancelCallback DriveAPIService::UninstallApp(
+ const std::string& app_id,
+ const google_apis::EntryActionCallback& callback) {
+ DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
+ DCHECK(!callback.is_null());
+
+ // TODO(kinaba) implement.
+ NOTREACHED();
+ return CancelCallback();
+}
+
CancelCallback DriveAPIService::GetResourceListInDirectoryByWapi(
const std::string& directory_resource_id,
const google_apis::GetResourceListCallback& callback) {
« no previous file with comments | « chrome/browser/drive/drive_api_service.h ('k') | chrome/browser/drive/drive_service_interface.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698