OLD | NEW |
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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 const google_apis::ChangeListCallback& callback) OVERRIDE; | 50 const google_apis::ChangeListCallback& callback) OVERRIDE; |
51 virtual google_apis::CancelCallback GetRemainingFileList( | 51 virtual google_apis::CancelCallback GetRemainingFileList( |
52 const GURL& next_link, | 52 const GURL& next_link, |
53 const google_apis::FileListCallback& callback) OVERRIDE; | 53 const google_apis::FileListCallback& callback) OVERRIDE; |
54 virtual google_apis::CancelCallback GetFileResource( | 54 virtual google_apis::CancelCallback GetFileResource( |
55 const std::string& resource_id, | 55 const std::string& resource_id, |
56 const google_apis::FileResourceCallback& callback) OVERRIDE; | 56 const google_apis::FileResourceCallback& callback) OVERRIDE; |
57 virtual google_apis::CancelCallback GetShareUrl( | 57 virtual google_apis::CancelCallback GetShareUrl( |
58 const std::string& resource_id, | 58 const std::string& resource_id, |
59 const GURL& embed_origin, | 59 const GURL& embed_origin, |
60 const google_apis::GetShareUrlCallback& callback) OVERRIDE; | 60 const google_apis::GetUrlCallback& callback) OVERRIDE; |
61 virtual google_apis::CancelCallback GetAboutResource( | 61 virtual google_apis::CancelCallback GetAboutResource( |
62 const google_apis::AboutResourceCallback& callback) OVERRIDE; | 62 const google_apis::AboutResourceCallback& callback) OVERRIDE; |
63 virtual google_apis::CancelCallback GetAppList( | 63 virtual google_apis::CancelCallback GetAppList( |
64 const google_apis::AppListCallback& callback) OVERRIDE; | 64 const google_apis::AppListCallback& callback) OVERRIDE; |
65 virtual google_apis::CancelCallback DeleteResource( | 65 virtual google_apis::CancelCallback DeleteResource( |
66 const std::string& resource_id, | 66 const std::string& resource_id, |
67 const std::string& etag, | 67 const std::string& etag, |
68 const google_apis::EntryActionCallback& callback) OVERRIDE; | 68 const google_apis::EntryActionCallback& callback) OVERRIDE; |
69 virtual google_apis::CancelCallback TrashResource( | 69 virtual google_apis::CancelCallback TrashResource( |
70 const std::string& resource_id, | 70 const std::string& resource_id, |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
141 virtual google_apis::CancelCallback AddPermission( | 141 virtual google_apis::CancelCallback AddPermission( |
142 const std::string& resource_id, | 142 const std::string& resource_id, |
143 const std::string& email, | 143 const std::string& email, |
144 google_apis::drive::PermissionRole role, | 144 google_apis::drive::PermissionRole role, |
145 const google_apis::EntryActionCallback& callback) OVERRIDE; | 145 const google_apis::EntryActionCallback& callback) OVERRIDE; |
146 }; | 146 }; |
147 | 147 |
148 } // namespace drive | 148 } // namespace drive |
149 | 149 |
150 #endif // CHROME_BROWSER_DRIVE_DUMMY_DRIVE_SERVICE_H_ | 150 #endif // CHROME_BROWSER_DRIVE_DUMMY_DRIVE_SERVICE_H_ |
OLD | NEW |