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

Side by Side Diff: chrome/browser/sync_file_system/local/canned_syncable_file_system.h

Issue 629603002: replace OVERRIDE and FINAL with override and final in chrome/browser/[r-z]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master Created 6 years, 2 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_LOCAL_CANNED_SYNCABLE_FILE_SYSTEM_H_ 5 #ifndef CHROME_BROWSER_SYNC_FILE_SYSTEM_LOCAL_CANNED_SYNCABLE_FILE_SYSTEM_H_
6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_LOCAL_CANNED_SYNCABLE_FILE_SYSTEM_H_ 6 #define CHROME_BROWSER_SYNC_FILE_SYSTEM_LOCAL_CANNED_SYNCABLE_FILE_SYSTEM_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
152 // ChangeTracker related methods. They run on file task runner. 152 // ChangeTracker related methods. They run on file task runner.
153 void GetChangedURLsInTracker(storage::FileSystemURLSet* urls); 153 void GetChangedURLsInTracker(storage::FileSystemURLSet* urls);
154 void ClearChangeForURLInTracker(const storage::FileSystemURL& url); 154 void ClearChangeForURLInTracker(const storage::FileSystemURL& url);
155 void GetChangesForURLInTracker(const storage::FileSystemURL& url, 155 void GetChangesForURLInTracker(const storage::FileSystemURL& url,
156 FileChangeList* changes); 156 FileChangeList* changes);
157 157
158 SyncFileSystemBackend* backend(); 158 SyncFileSystemBackend* backend();
159 storage::FileSystemOperationRunner* operation_runner(); 159 storage::FileSystemOperationRunner* operation_runner();
160 160
161 // LocalFileSyncStatus::Observer overrides. 161 // LocalFileSyncStatus::Observer overrides.
162 virtual void OnSyncEnabled(const storage::FileSystemURL& url) OVERRIDE; 162 virtual void OnSyncEnabled(const storage::FileSystemURL& url) override;
163 virtual void OnWriteEnabled(const storage::FileSystemURL& url) OVERRIDE; 163 virtual void OnWriteEnabled(const storage::FileSystemURL& url) override;
164 164
165 // Operation methods body. 165 // Operation methods body.
166 // They can be also called directly if the caller is already on IO thread. 166 // They can be also called directly if the caller is already on IO thread.
167 void DoOpenFileSystem(const OpenFileSystemCallback& callback); 167 void DoOpenFileSystem(const OpenFileSystemCallback& callback);
168 void DoCreateDirectory(const storage::FileSystemURL& url, 168 void DoCreateDirectory(const storage::FileSystemURL& url,
169 const StatusCallback& callback); 169 const StatusCallback& callback);
170 void DoCreateFile(const storage::FileSystemURL& url, 170 void DoCreateFile(const storage::FileSystemURL& url,
171 const StatusCallback& callback); 171 const StatusCallback& callback);
172 void DoCopy(const storage::FileSystemURL& src_url, 172 void DoCopy(const storage::FileSystemURL& src_url,
173 const storage::FileSystemURL& dest_url, 173 const storage::FileSystemURL& dest_url,
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
244 bool is_filesystem_opened_; // Should be accessed only on the IO thread. 244 bool is_filesystem_opened_; // Should be accessed only on the IO thread.
245 245
246 scoped_refptr<ObserverList> sync_status_observers_; 246 scoped_refptr<ObserverList> sync_status_observers_;
247 247
248 DISALLOW_COPY_AND_ASSIGN(CannedSyncableFileSystem); 248 DISALLOW_COPY_AND_ASSIGN(CannedSyncableFileSystem);
249 }; 249 };
250 250
251 } // namespace sync_file_system 251 } // namespace sync_file_system
252 252
253 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_LOCAL_CANNED_SYNCABLE_FILE_SYSTEM_H_ 253 #endif // CHROME_BROWSER_SYNC_FILE_SYSTEM_LOCAL_CANNED_SYNCABLE_FILE_SYSTEM_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698