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

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

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 #ifndef CHROME_BROWSER_GOOGLE_APIS_DUMMY_DRIVE_SERVICE_H_ 5 #ifndef CHROME_BROWSER_GOOGLE_APIS_DUMMY_DRIVE_SERVICE_H_
6 #define CHROME_BROWSER_GOOGLE_APIS_DUMMY_DRIVE_SERVICE_H_ 6 #define CHROME_BROWSER_GOOGLE_APIS_DUMMY_DRIVE_SERVICE_H_
7 7
8 #include "chrome/browser/google_apis/drive_service_interface.h" 8 #include "chrome/browser/google_apis/drive_service_interface.h"
9 9
10 namespace google_apis { 10 namespace google_apis {
(...skipping 19 matching lines...) Expand all
30 virtual void ClearRefreshToken() OVERRIDE; 30 virtual void ClearRefreshToken() OVERRIDE;
31 virtual std::string GetRootResourceId() const OVERRIDE; 31 virtual std::string GetRootResourceId() const OVERRIDE;
32 virtual void GetAllResourceList( 32 virtual void GetAllResourceList(
33 const GetResourceListCallback& callback) OVERRIDE; 33 const GetResourceListCallback& callback) OVERRIDE;
34 virtual void GetResourceListInDirectory( 34 virtual void GetResourceListInDirectory(
35 const std::string& directory_resource_id, 35 const std::string& directory_resource_id,
36 const GetResourceListCallback& callback) OVERRIDE; 36 const GetResourceListCallback& callback) OVERRIDE;
37 virtual void Search( 37 virtual void Search(
38 const std::string& search_query, 38 const std::string& search_query,
39 const GetResourceListCallback& callback) OVERRIDE; 39 const GetResourceListCallback& callback) OVERRIDE;
40 virtual void SearchInDirectory( 40 virtual void SearchByTitle(
41 const std::string& search_query, 41 const std::string& title,
42 const std::string& directory_resource_id, 42 const std::string& directory_resource_id,
43 const GetResourceListCallback& callback) OVERRIDE; 43 const GetResourceListCallback& callback) OVERRIDE;
44 virtual void GetChangeList( 44 virtual void GetChangeList(
45 int64 start_changestamp, 45 int64 start_changestamp,
46 const GetResourceListCallback& callback) OVERRIDE; 46 const GetResourceListCallback& callback) OVERRIDE;
47 virtual void ContinueGetResourceList( 47 virtual void ContinueGetResourceList(
48 const GURL& override_url, 48 const GURL& override_url,
49 const GetResourceListCallback& callback) OVERRIDE; 49 const GetResourceListCallback& callback) OVERRIDE;
50 virtual void GetResourceEntry( 50 virtual void GetResourceEntry(
51 const std::string& resource_id, 51 const std::string& resource_id,
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 int64 content_length, 116 int64 content_length,
117 const UploadRangeCallback& callback) OVERRIDE; 117 const UploadRangeCallback& callback) OVERRIDE;
118 virtual void AuthorizeApp(const std::string& resource_id, 118 virtual void AuthorizeApp(const std::string& resource_id,
119 const std::string& app_id, 119 const std::string& app_id,
120 const AuthorizeAppCallback& callback) OVERRIDE; 120 const AuthorizeAppCallback& callback) OVERRIDE;
121 }; 121 };
122 122
123 } // namespace google_apis 123 } // namespace google_apis
124 124
125 #endif // CHROME_BROWSER_GOOGLE_APIS_DUMMY_DRIVE_SERVICE_H_ 125 #endif // CHROME_BROWSER_GOOGLE_APIS_DUMMY_DRIVE_SERVICE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698