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

Side by Side Diff: chrome/browser/sync_file_system/drive_backend/drive_service_on_worker.h

Issue 2910913002: WIP.
Patch Set: rebase Created 3 years, 6 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
« no previous file with comments | « no previous file | chrome/browser/sync_file_system/drive_backend/drive_service_on_worker.cc » ('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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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_SYNC_FILE_SYSTEM_DRIVE_BACKEND_DRIVE_SERVICE_ON_WORKER_H_ 5 #ifndef CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_DRIVE_SERVICE_ON_WORKER_H_
6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_DRIVE_SERVICE_ON_WORKER_H_ 6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_DRIVE_SERVICE_ON_WORKER_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include "base/macros.h" 10 #include "base/macros.h"
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 google_apis::CancelCallback GetRemainingFileList( 73 google_apis::CancelCallback GetRemainingFileList(
74 const GURL& next_link, 74 const GURL& next_link,
75 const google_apis::FileListCallback& callback) override; 75 const google_apis::FileListCallback& callback) override;
76 76
77 google_apis::CancelCallback GetFileResource( 77 google_apis::CancelCallback GetFileResource(
78 const std::string& resource_id, 78 const std::string& resource_id,
79 const google_apis::FileResourceCallback& callback) override; 79 const google_apis::FileResourceCallback& callback) override;
80 80
81 google_apis::CancelCallback GetFileListInDirectory( 81 google_apis::CancelCallback GetFileListInDirectory(
82 const std::string& directory_resource_id, 82 const std::string& directory_resource_id,
83 const std::string& team_drive_id,
83 const google_apis::FileListCallback& callback) override; 84 const google_apis::FileListCallback& callback) override;
84 85
85 google_apis::CancelCallback RemoveResourceFromDirectory( 86 google_apis::CancelCallback RemoveResourceFromDirectory(
86 const std::string& parent_resource_id, 87 const std::string& parent_resource_id,
87 const std::string& resource_id, 88 const std::string& resource_id,
88 const google_apis::EntryActionCallback& callback) override; 89 const google_apis::EntryActionCallback& callback) override;
89 90
90 google_apis::CancelCallback SearchByTitle( 91 google_apis::CancelCallback SearchByTitle(
91 const std::string& title, 92 const std::string& title,
92 const std::string& directory_resource_id, 93 const std::string& directory_resource_id,
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
203 204
204 base::SequenceChecker sequence_checker_; 205 base::SequenceChecker sequence_checker_;
205 206
206 DISALLOW_COPY_AND_ASSIGN(DriveServiceOnWorker); 207 DISALLOW_COPY_AND_ASSIGN(DriveServiceOnWorker);
207 }; 208 };
208 209
209 } // namespace drive_backend 210 } // namespace drive_backend
210 } // namespace sync_file_system 211 } // namespace sync_file_system
211 212
212 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_DRIVE_SERVICE_ON_WORKER _H_ 213 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_DRIVE_BACKEND_DRIVE_SERVICE_ON_WORKER _H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/sync_file_system/drive_backend/drive_service_on_worker.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698