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

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

Issue 23714004: Implement GetResourceListInDirectoryByWapi. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 3 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 "chrome/browser/google_apis/auth_service_interface.h" 9 #include "chrome/browser/google_apis/auth_service_interface.h"
10 10
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 const google_apis::UploadRangeCallback& callback, 133 const google_apis::UploadRangeCallback& callback,
134 const google_apis::ProgressCallback& progress_callback) OVERRIDE; 134 const google_apis::ProgressCallback& progress_callback) OVERRIDE;
135 virtual google_apis::CancelCallback GetUploadStatus( 135 virtual google_apis::CancelCallback GetUploadStatus(
136 const GURL& upload_url, 136 const GURL& upload_url,
137 int64 content_length, 137 int64 content_length,
138 const google_apis::UploadRangeCallback& callback) OVERRIDE; 138 const google_apis::UploadRangeCallback& callback) OVERRIDE;
139 virtual google_apis::CancelCallback AuthorizeApp( 139 virtual google_apis::CancelCallback AuthorizeApp(
140 const std::string& resource_id, 140 const std::string& resource_id,
141 const std::string& app_id, 141 const std::string& app_id,
142 const google_apis::AuthorizeAppCallback& callback) OVERRIDE; 142 const google_apis::AuthorizeAppCallback& callback) OVERRIDE;
143 virtual google_apis::CancelCallback GetResourceListInDirectoryByWapi(
144 const std::string& directory_resource_id,
145 const google_apis::GetResourceListCallback& callback) OVERRIDE;
146 virtual google_apis::CancelCallback GetRemainingResourceList(
147 const GURL& next_url,
148 const google_apis::GetResourceListCallback& callback) OVERRIDE;
143 }; 149 };
144 150
145 } // namespace drive 151 } // namespace drive
146 152
147 #endif // CHROME_BROWSER_DRIVE_DUMMY_DRIVE_SERVICE_H_ 153 #endif // CHROME_BROWSER_DRIVE_DUMMY_DRIVE_SERVICE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698