| Index: chrome/browser/google_apis/gdata_wapi_service.cc
|
| diff --git a/chrome/browser/google_apis/gdata_wapi_service.cc b/chrome/browser/google_apis/gdata_wapi_service.cc
|
| index 95308915a4cb3ea410ebeff346d312f5af00c9cd..99c508eaaeaa46c2a2670cc8ba3e1aba1e5493d9 100644
|
| --- a/chrome/browser/google_apis/gdata_wapi_service.cc
|
| +++ b/chrome/browser/google_apis/gdata_wapi_service.cc
|
| @@ -284,9 +284,20 @@ void GDataWapiService::GetAccountMetadata(
|
| base::Bind(&ParseAccounetMetadataAndRun, callback)));
|
| }
|
|
|
| +void GDataWapiService::GetAboutResource(
|
| + const GetAboutResourceCallback& callback) {
|
| + DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
|
| + DCHECK(!callback.is_null());
|
| +
|
| + // TODO(hidehiko): Implement this.
|
| + NOTREACHED();
|
| +}
|
| +
|
| void GDataWapiService::GetAppList(const GetAppListCallback& callback) {
|
| - // For WAPI, AccountMetadata includes Drive application information, and
|
| - // this function is not used.
|
| + DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
|
| + DCHECK(!callback.is_null());
|
| +
|
| + // TODO(hidehiko): Implement this.
|
| NOTREACHED();
|
| }
|
|
|
|
|