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

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

Issue 12342008: Add GetAboutResource to DriveServiceInterface. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 7 years, 10 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/google_apis/drive_api_service.cc
diff --git a/chrome/browser/google_apis/drive_api_service.cc b/chrome/browser/google_apis/drive_api_service.cc
index 6f263b210dbd4e13b4a95c5390ac46872ba86e5a..8344ff30e25952ba498110c6e45233d56b380c7a 100644
--- a/chrome/browser/google_apis/drive_api_service.cc
+++ b/chrome/browser/google_apis/drive_api_service.cc
@@ -322,6 +322,15 @@ void DriveAPIService::GetAccountMetadata(
base::Bind(&ParseAccounetMetadataAndRun, callback)));
}
+void DriveAPIService::GetAboutResource(
+ const GetAboutResourceCallback& callback) {
+ DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
+ DCHECK(!callback.is_null());
+
+ // TODO(hidehiko): Implement this.
+ NOTREACHED();
+}
+
void DriveAPIService::GetAppList(const GetAppListCallback& callback) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
DCHECK(!callback.is_null());

Powered by Google App Engine
This is Rietveld 408576698