| Index: chrome/browser/google_apis/fake_drive_service.cc
|
| diff --git a/chrome/browser/google_apis/fake_drive_service.cc b/chrome/browser/google_apis/fake_drive_service.cc
|
| index d3d3a8f88480d16b578fbbc3b45da1fca4ec1928..899b786ef5ff220feb6ff56402ecf85848bb78f5 100644
|
| --- a/chrome/browser/google_apis/fake_drive_service.cc
|
| +++ b/chrome/browser/google_apis/fake_drive_service.cc
|
| @@ -369,6 +369,15 @@ void FakeDriveService::GetAccountMetadata(
|
| base::Passed(&account_metadata)));
|
| }
|
|
|
| +void FakeDriveService::GetAboutResource(
|
| + const GetAboutResourceCallback& callback) {
|
| + DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
|
| + DCHECK(!callback.is_null());
|
| +
|
| + // TODO(hidehiko): Implement this.
|
| + NOTREACHED();
|
| +}
|
| +
|
| void FakeDriveService::GetAppList(const GetAppListCallback& callback) {
|
| DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
|
| DCHECK(!callback.is_null());
|
|
|