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

Unified Diff: chrome/browser/chromeos/fileapi/mtp_file_system_backend_delegate.h

Issue 623293003: replace OVERRIDE and FINAL with override and final in chrome/browser/chromeos/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: run git cl format on echo_dialog_view.h 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/fileapi/mtp_file_system_backend_delegate.h
diff --git a/chrome/browser/chromeos/fileapi/mtp_file_system_backend_delegate.h b/chrome/browser/chromeos/fileapi/mtp_file_system_backend_delegate.h
index 65d08a18483621f5a962b1dae6b5fcb21c3f3848..ead4936780ef9dc64c97d010466409e1ccd4eb5b 100644
--- a/chrome/browser/chromeos/fileapi/mtp_file_system_backend_delegate.h
+++ b/chrome/browser/chromeos/fileapi/mtp_file_system_backend_delegate.h
@@ -35,22 +35,22 @@ class MTPFileSystemBackendDelegate : public FileSystemBackendDelegate {
// FileSystemBackendDelegate overrides.
virtual storage::AsyncFileUtil* GetAsyncFileUtil(
- storage::FileSystemType type) OVERRIDE;
+ storage::FileSystemType type) override;
virtual scoped_ptr<storage::FileStreamReader> CreateFileStreamReader(
const storage::FileSystemURL& url,
int64 offset,
int64 max_bytes_to_read,
const base::Time& expected_modification_time,
- storage::FileSystemContext* context) OVERRIDE;
+ storage::FileSystemContext* context) override;
virtual scoped_ptr<storage::FileStreamWriter> CreateFileStreamWriter(
const storage::FileSystemURL& url,
int64 offset,
- storage::FileSystemContext* context) OVERRIDE;
+ storage::FileSystemContext* context) override;
virtual storage::WatcherManager* GetWatcherManager(
- const storage::FileSystemURL& url) OVERRIDE;
+ const storage::FileSystemURL& url) override;
virtual void GetRedirectURLForContents(
const storage::FileSystemURL& url,
- const storage::URLCallback& callback) OVERRIDE;
+ const storage::URLCallback& callback) override;
private:
scoped_ptr<DeviceMediaAsyncFileUtil> device_media_async_file_util_;

Powered by Google App Engine
This is Rietveld 408576698