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

Unified Diff: chrome/browser/media_galleries/linux/mtp_device_delegate_impl_linux.h

Issue 624173002: replace OVERRIDE and FINAL with override and final in chrome/browser/[j-q]* (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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/media_galleries/linux/mtp_device_delegate_impl_linux.h
diff --git a/chrome/browser/media_galleries/linux/mtp_device_delegate_impl_linux.h b/chrome/browser/media_galleries/linux/mtp_device_delegate_impl_linux.h
index f988a3fda84ec5e4fc0bbe6eaf1a9233721123ac..f8bab8372d85803e3a3354eadd52be5d4ea3a2d4 100644
--- a/chrome/browser/media_galleries/linux/mtp_device_delegate_impl_linux.h
+++ b/chrome/browser/media_galleries/linux/mtp_device_delegate_impl_linux.h
@@ -74,24 +74,24 @@ class MTPDeviceDelegateImplLinux : public MTPDeviceAsyncDelegate {
// MTPDeviceAsyncDelegate:
virtual void GetFileInfo(const base::FilePath& file_path,
const GetFileInfoSuccessCallback& success_callback,
- const ErrorCallback& error_callback) OVERRIDE;
+ const ErrorCallback& error_callback) override;
virtual void ReadDirectory(
const base::FilePath& root,
const ReadDirectorySuccessCallback& success_callback,
- const ErrorCallback& error_callback) OVERRIDE;
+ const ErrorCallback& error_callback) override;
virtual void CreateSnapshotFile(
const base::FilePath& device_file_path,
const base::FilePath& local_path,
const CreateSnapshotFileSuccessCallback& success_callback,
- const ErrorCallback& error_callback) OVERRIDE;
- virtual bool IsStreaming() OVERRIDE;
+ const ErrorCallback& error_callback) override;
+ virtual bool IsStreaming() override;
virtual void ReadBytes(const base::FilePath& device_file_path,
const scoped_refptr<net::IOBuffer>& buf,
int64 offset,
int buf_len,
const ReadBytesSuccessCallback& success_callback,
- const ErrorCallback& error_callback) OVERRIDE;
- virtual void CancelPendingTasksAndDeleteDelegate() OVERRIDE;
+ const ErrorCallback& error_callback) override;
+ virtual void CancelPendingTasksAndDeleteDelegate() override;
// The internal methods correspond to the similarly named methods above.
// The |root_node_| cache should be filled at this point.

Powered by Google App Engine
This is Rietveld 408576698