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

Side by Side Diff: chrome/browser/google_apis/dummy_drive_service.cc

Issue 13602003: Add new methods to DriveServiceInterface. These will replace GetResourceList. (Closed) Base URL: http://git.chromium.org/chromium/src.git@webkit_master
Patch Set: Created 7 years, 8 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
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/google_apis/dummy_drive_service.h" 5 #include "chrome/browser/google_apis/dummy_drive_service.h"
6 6
7 namespace google_apis { 7 namespace google_apis {
8 8
9 DummyDriveService::DummyDriveService() {} 9 DummyDriveService::DummyDriveService() {}
10 10
(...skipping 30 matching lines...) Expand all
41 } 41 }
42 42
43 void DummyDriveService::GetResourceList( 43 void DummyDriveService::GetResourceList(
44 const GURL& url, 44 const GURL& url,
45 int64 start_changestamp, 45 int64 start_changestamp,
46 const std::string& search_query, 46 const std::string& search_query,
47 bool shared_with_me, 47 bool shared_with_me,
48 const std::string& directory_resource_id, 48 const std::string& directory_resource_id,
49 const GetResourceListCallback& callback) {} 49 const GetResourceListCallback& callback) {}
50 50
51 void DummyDriveService::GetAllResourceList(
52 const GetResourceListCallback& callback) {}
53
54 void DummyDriveService::GetResourceListInDirectory(
55 const std::string& directory_resource_id,
56 const GetResourceListCallback& callback) {}
57
58 void DummyDriveService::Search(
59 const std::string& search_query,
60 const GetResourceListCallback& callback) {}
61
62 void DummyDriveService::SearchInDirectory(
63 const std::string& search_query,
64 const std::string& directory_resource_id,
65 const GetResourceListCallback& callback) {}
66
67 void DummyDriveService::GetChangeList(
68 int64 start_changestamp,
69 const GetResourceListCallback& callback) {}
70
71 void DummyDriveService::ContinueGetResourceList(
72 const GURL& override_url,
73 const GetResourceListCallback& callback) {}
74
51 void DummyDriveService::GetResourceEntry( 75 void DummyDriveService::GetResourceEntry(
52 const std::string& resource_id, 76 const std::string& resource_id,
53 const GetResourceEntryCallback& callback) {} 77 const GetResourceEntryCallback& callback) {}
54 78
55 void DummyDriveService::GetAccountMetadata( 79 void DummyDriveService::GetAccountMetadata(
56 const GetAccountMetadataCallback& callback) {} 80 const GetAccountMetadataCallback& callback) {}
57 81
58 void DummyDriveService::GetAboutResource( 82 void DummyDriveService::GetAboutResource(
59 const GetAboutResourceCallback& callback) {} 83 const GetAboutResourceCallback& callback) {}
60 84
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 const base::FilePath& drive_file_path, 151 const base::FilePath& drive_file_path,
128 const GURL& upload_url, 152 const GURL& upload_url,
129 int64 content_length, 153 int64 content_length,
130 const UploadRangeCallback& callback) {} 154 const UploadRangeCallback& callback) {}
131 155
132 void DummyDriveService::AuthorizeApp(const std::string& resource_id, 156 void DummyDriveService::AuthorizeApp(const std::string& resource_id,
133 const std::string& app_id, 157 const std::string& app_id,
134 const AuthorizeAppCallback& callback) {} 158 const AuthorizeAppCallback& callback) {}
135 159
136 } // namespace google_apis 160 } // namespace google_apis
OLDNEW
« no previous file with comments | « chrome/browser/google_apis/dummy_drive_service.h ('k') | chrome/browser/google_apis/fake_drive_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698