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

Side by Side Diff: chrome/browser/drive/dummy_drive_service.h

Issue 127463004: Add UninstallApp() method to DriveAPIService interface. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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
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 #ifndef CHROME_BROWSER_DRIVE_DUMMY_DRIVE_SERVICE_H_ 5 #ifndef CHROME_BROWSER_DRIVE_DUMMY_DRIVE_SERVICE_H_
6 #define CHROME_BROWSER_DRIVE_DUMMY_DRIVE_SERVICE_H_ 6 #define CHROME_BROWSER_DRIVE_DUMMY_DRIVE_SERVICE_H_
7 7
8 #include "chrome/browser/drive/drive_service_interface.h" 8 #include "chrome/browser/drive/drive_service_interface.h"
9 #include "google_apis/drive/auth_service_interface.h" 9 #include "google_apis/drive/auth_service_interface.h"
10 10
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 const google_apis::UploadRangeCallback& callback, 126 const google_apis::UploadRangeCallback& callback,
127 const google_apis::ProgressCallback& progress_callback) OVERRIDE; 127 const google_apis::ProgressCallback& progress_callback) OVERRIDE;
128 virtual google_apis::CancelCallback GetUploadStatus( 128 virtual google_apis::CancelCallback GetUploadStatus(
129 const GURL& upload_url, 129 const GURL& upload_url,
130 int64 content_length, 130 int64 content_length,
131 const google_apis::UploadRangeCallback& callback) OVERRIDE; 131 const google_apis::UploadRangeCallback& callback) OVERRIDE;
132 virtual google_apis::CancelCallback AuthorizeApp( 132 virtual google_apis::CancelCallback AuthorizeApp(
133 const std::string& resource_id, 133 const std::string& resource_id,
134 const std::string& app_id, 134 const std::string& app_id,
135 const google_apis::AuthorizeAppCallback& callback) OVERRIDE; 135 const google_apis::AuthorizeAppCallback& callback) OVERRIDE;
136 virtual google_apis::CancelCallback UninstallApp(
137 const std::string& app_id,
138 const google_apis::EntryActionCallback& callback) OVERRIDE;
136 virtual google_apis::CancelCallback GetResourceListInDirectoryByWapi( 139 virtual google_apis::CancelCallback GetResourceListInDirectoryByWapi(
137 const std::string& directory_resource_id, 140 const std::string& directory_resource_id,
138 const google_apis::GetResourceListCallback& callback) OVERRIDE; 141 const google_apis::GetResourceListCallback& callback) OVERRIDE;
139 virtual google_apis::CancelCallback GetRemainingResourceList( 142 virtual google_apis::CancelCallback GetRemainingResourceList(
140 const GURL& next_link, 143 const GURL& next_link,
141 const google_apis::GetResourceListCallback& callback) OVERRIDE; 144 const google_apis::GetResourceListCallback& callback) OVERRIDE;
142 }; 145 };
143 146
144 } // namespace drive 147 } // namespace drive
145 148
146 #endif // CHROME_BROWSER_DRIVE_DUMMY_DRIVE_SERVICE_H_ 149 #endif // CHROME_BROWSER_DRIVE_DUMMY_DRIVE_SERVICE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698