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

Side by Side Diff: chrome/browser/drive/dummy_drive_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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/drive/dummy_drive_service.h ('k') | chrome/browser/drive/fake_drive_service.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/drive/dummy_drive_service.h" 5 #include "chrome/browser/drive/dummy_drive_service.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "chrome/browser/drive/drive_api_util.h" 8 #include "chrome/browser/drive/drive_api_util.h"
9 9
10 using google_apis::AboutResourceCallback; 10 using google_apis::AboutResourceCallback;
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 CancelCallback DummyDriveService::GetUploadStatus( 179 CancelCallback DummyDriveService::GetUploadStatus(
180 const GURL& upload_url, 180 const GURL& upload_url,
181 int64 content_length, 181 int64 content_length,
182 const UploadRangeCallback& callback) { return CancelCallback(); } 182 const UploadRangeCallback& callback) { return CancelCallback(); }
183 183
184 CancelCallback DummyDriveService::AuthorizeApp( 184 CancelCallback DummyDriveService::AuthorizeApp(
185 const std::string& resource_id, 185 const std::string& resource_id,
186 const std::string& app_id, 186 const std::string& app_id,
187 const AuthorizeAppCallback& callback) { return CancelCallback(); } 187 const AuthorizeAppCallback& callback) { return CancelCallback(); }
188 188
189 CancelCallback DummyDriveService::UninstallApp(
190 const std::string& app_id,
191 const EntryActionCallback& callback) { return CancelCallback(); }
192
189 CancelCallback DummyDriveService::GetResourceListInDirectoryByWapi( 193 CancelCallback DummyDriveService::GetResourceListInDirectoryByWapi(
190 const std::string& directory_resource_id, 194 const std::string& directory_resource_id,
191 const GetResourceListCallback& callback) { return CancelCallback(); } 195 const GetResourceListCallback& callback) { return CancelCallback(); }
192 196
193 CancelCallback DummyDriveService::GetRemainingResourceList( 197 CancelCallback DummyDriveService::GetRemainingResourceList(
194 const GURL& next_link, 198 const GURL& next_link,
195 const GetResourceListCallback& callback) { return CancelCallback(); } 199 const GetResourceListCallback& callback) { return CancelCallback(); }
196 200
197 } // namespace drive 201 } // namespace drive
OLDNEW
« no previous file with comments | « chrome/browser/drive/dummy_drive_service.h ('k') | chrome/browser/drive/fake_drive_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698