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 #include "chrome/browser/drive/dummy_drive_service.h" | 5 #include "components/drive/service/dummy_drive_service.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 | 8 |
9 using google_apis::AboutResourceCallback; | 9 using google_apis::AboutResourceCallback; |
10 using google_apis::AppListCallback; | 10 using google_apis::AppListCallback; |
11 using google_apis::AuthStatusCallback; | 11 using google_apis::AuthStatusCallback; |
12 using google_apis::AuthorizeAppCallback; | 12 using google_apis::AuthorizeAppCallback; |
13 using google_apis::CancelCallback; | 13 using google_apis::CancelCallback; |
14 using google_apis::ChangeListCallback; | 14 using google_apis::ChangeListCallback; |
15 using google_apis::DownloadActionCallback; | 15 using google_apis::DownloadActionCallback; |
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
215 const std::string& resource_id, | 215 const std::string& resource_id, |
216 const std::string& email, | 216 const std::string& email, |
217 google_apis::drive::PermissionRole role, | 217 google_apis::drive::PermissionRole role, |
218 const EntryActionCallback& callback) { return CancelCallback(); } | 218 const EntryActionCallback& callback) { return CancelCallback(); } |
219 scoped_ptr<BatchRequestConfiguratorInterface> | 219 scoped_ptr<BatchRequestConfiguratorInterface> |
220 DummyDriveService::StartBatchRequest() { | 220 DummyDriveService::StartBatchRequest() { |
221 return scoped_ptr<BatchRequestConfiguratorInterface>(); | 221 return scoped_ptr<BatchRequestConfiguratorInterface>(); |
222 } | 222 } |
223 | 223 |
224 } // namespace drive | 224 } // namespace drive |
OLD | NEW |