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

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

Issue 100903005: drive: Remove unused DriveServiceInterface::TouchResource (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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
« no previous file with comments | « chrome/browser/drive/dummy_drive_service.h ('k') | chrome/browser/drive/fake_drive_service.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/drive/dummy_drive_service.h" 5 #include "chrome/browser/drive/dummy_drive_service.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "chrome/browser/drive/drive_api_util.h" 8 #include "chrome/browser/drive/drive_api_util.h"
9 9
10 using google_apis::AboutResourceCallback; 10 using google_apis::AboutResourceCallback;
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 const base::Time& last_viewed_by_me, 131 const base::Time& last_viewed_by_me,
132 const google_apis::GetResourceEntryCallback& callback) { 132 const google_apis::GetResourceEntryCallback& callback) {
133 return CancelCallback(); 133 return CancelCallback();
134 } 134 }
135 135
136 CancelCallback DummyDriveService::RenameResource( 136 CancelCallback DummyDriveService::RenameResource(
137 const std::string& resource_id, 137 const std::string& resource_id,
138 const std::string& new_title, 138 const std::string& new_title,
139 const EntryActionCallback& callback) { return CancelCallback(); } 139 const EntryActionCallback& callback) { return CancelCallback(); }
140 140
141 CancelCallback DummyDriveService::TouchResource(
142 const std::string& resource_id,
143 const base::Time& modified_date,
144 const base::Time& last_viewed_by_me_date,
145 const GetResourceEntryCallback& callback) { return CancelCallback(); }
146
147 CancelCallback DummyDriveService::AddResourceToDirectory( 141 CancelCallback DummyDriveService::AddResourceToDirectory(
148 const std::string& parent_resource_id, 142 const std::string& parent_resource_id,
149 const std::string& resource_id, 143 const std::string& resource_id,
150 const EntryActionCallback& callback) { return CancelCallback(); } 144 const EntryActionCallback& callback) { return CancelCallback(); }
151 145
152 CancelCallback DummyDriveService::RemoveResourceFromDirectory( 146 CancelCallback DummyDriveService::RemoveResourceFromDirectory(
153 const std::string& parent_resource_id, 147 const std::string& parent_resource_id,
154 const std::string& resource_id, 148 const std::string& resource_id,
155 const EntryActionCallback& callback) { return CancelCallback(); } 149 const EntryActionCallback& callback) { return CancelCallback(); }
156 150
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 189
196 CancelCallback DummyDriveService::GetResourceListInDirectoryByWapi( 190 CancelCallback DummyDriveService::GetResourceListInDirectoryByWapi(
197 const std::string& directory_resource_id, 191 const std::string& directory_resource_id,
198 const GetResourceListCallback& callback) { return CancelCallback(); } 192 const GetResourceListCallback& callback) { return CancelCallback(); }
199 193
200 CancelCallback DummyDriveService::GetRemainingResourceList( 194 CancelCallback DummyDriveService::GetRemainingResourceList(
201 const GURL& next_link, 195 const GURL& next_link,
202 const GetResourceListCallback& callback) { return CancelCallback(); } 196 const GetResourceListCallback& callback) { return CancelCallback(); }
203 197
204 } // namespace drive 198 } // namespace drive
OLDNEW
« no previous file with comments | « chrome/browser/drive/dummy_drive_service.h ('k') | chrome/browser/drive/fake_drive_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698