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

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

Issue 14146006: Refactoring: replace SearchInDirectory by SearchByTitle. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
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 | 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 #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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 const GetResourceListCallback& callback) {} 44 const GetResourceListCallback& callback) {}
45 45
46 void DummyDriveService::GetResourceListInDirectory( 46 void DummyDriveService::GetResourceListInDirectory(
47 const std::string& directory_resource_id, 47 const std::string& directory_resource_id,
48 const GetResourceListCallback& callback) {} 48 const GetResourceListCallback& callback) {}
49 49
50 void DummyDriveService::Search( 50 void DummyDriveService::Search(
51 const std::string& search_query, 51 const std::string& search_query,
52 const GetResourceListCallback& callback) {} 52 const GetResourceListCallback& callback) {}
53 53
54 void DummyDriveService::SearchInDirectory( 54 void DummyDriveService::SearchByTitle(
55 const std::string& search_query, 55 const std::string& title,
56 const std::string& directory_resource_id, 56 const std::string& directory_resource_id,
57 const GetResourceListCallback& callback) {} 57 const GetResourceListCallback& callback) {}
58 58
59 void DummyDriveService::GetChangeList( 59 void DummyDriveService::GetChangeList(
60 int64 start_changestamp, 60 int64 start_changestamp,
61 const GetResourceListCallback& callback) {} 61 const GetResourceListCallback& callback) {}
62 62
63 void DummyDriveService::ContinueGetResourceList( 63 void DummyDriveService::ContinueGetResourceList(
64 const GURL& override_url, 64 const GURL& override_url,
65 const GetResourceListCallback& callback) {} 65 const GetResourceListCallback& callback) {}
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 const base::FilePath& drive_file_path, 145 const base::FilePath& drive_file_path,
146 const GURL& upload_url, 146 const GURL& upload_url,
147 int64 content_length, 147 int64 content_length,
148 const UploadRangeCallback& callback) {} 148 const UploadRangeCallback& callback) {}
149 149
150 void DummyDriveService::AuthorizeApp(const std::string& resource_id, 150 void DummyDriveService::AuthorizeApp(const std::string& resource_id,
151 const std::string& app_id, 151 const std::string& app_id,
152 const AuthorizeAppCallback& callback) {} 152 const AuthorizeAppCallback& callback) {}
153 153
154 } // namespace google_apis 154 } // namespace google_apis
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698