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

Unified Diff: components/storage_monitor/test_media_transfer_protocol_manager_linux.h

Issue 623133002: replace OVERRIDE and FINAL with override and final in components/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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: components/storage_monitor/test_media_transfer_protocol_manager_linux.h
diff --git a/components/storage_monitor/test_media_transfer_protocol_manager_linux.h b/components/storage_monitor/test_media_transfer_protocol_manager_linux.h
index eae125a000c5904b28032f4956b7b7625d6472dc..64bd18d086d4c13a008cdd62a56ce887ff93cfd3 100644
--- a/components/storage_monitor/test_media_transfer_protocol_manager_linux.h
+++ b/components/storage_monitor/test_media_transfer_protocol_manager_linux.h
@@ -18,27 +18,27 @@ class TestMediaTransferProtocolManagerLinux
private:
// device::MediaTransferProtocolManager implementation.
- virtual void AddObserver(Observer* observer) OVERRIDE;
- virtual void RemoveObserver(Observer* observer) OVERRIDE;
- virtual const std::vector<std::string> GetStorages() const OVERRIDE;
+ virtual void AddObserver(Observer* observer) override;
+ virtual void RemoveObserver(Observer* observer) override;
+ virtual const std::vector<std::string> GetStorages() const override;
virtual const MtpStorageInfo* GetStorageInfo(
- const std::string& storage_name) const OVERRIDE;
+ const std::string& storage_name) const override;
virtual void OpenStorage(const std::string& storage_name,
const std::string& mode,
- const OpenStorageCallback& callback) OVERRIDE;
+ const OpenStorageCallback& callback) override;
virtual void CloseStorage(const std::string& storage_handle,
- const CloseStorageCallback& callback) OVERRIDE;
+ const CloseStorageCallback& callback) override;
virtual void ReadDirectory(const std::string& storage_handle,
uint32 file_id,
- const ReadDirectoryCallback& callback) OVERRIDE;
+ const ReadDirectoryCallback& callback) override;
virtual void ReadFileChunk(const std::string& storage_handle,
uint32 file_id,
uint32 offset,
uint32 count,
- const ReadFileCallback& callback) OVERRIDE;
+ const ReadFileCallback& callback) override;
virtual void GetFileInfo(const std::string& storage_handle,
uint32 file_id,
- const GetFileInfoCallback& callback) OVERRIDE;
+ const GetFileInfoCallback& callback) override;
DISALLOW_COPY_AND_ASSIGN(TestMediaTransferProtocolManagerLinux);
};

Powered by Google App Engine
This is Rietveld 408576698