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

Unified Diff: components/storage_monitor/mock_removable_storage_observer.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/mock_removable_storage_observer.h
diff --git a/components/storage_monitor/mock_removable_storage_observer.h b/components/storage_monitor/mock_removable_storage_observer.h
index 80019b36c5f633a9cc2fb00b3722a9f8b6f2a3ea..220035e4dcb7ce3600f707dd333f92362f6a8d74 100644
--- a/components/storage_monitor/mock_removable_storage_observer.h
+++ b/components/storage_monitor/mock_removable_storage_observer.h
@@ -15,9 +15,9 @@ class MockRemovableStorageObserver : public RemovableStorageObserver {
MockRemovableStorageObserver();
virtual ~MockRemovableStorageObserver();
- virtual void OnRemovableStorageAttached(const StorageInfo& info) OVERRIDE;
+ virtual void OnRemovableStorageAttached(const StorageInfo& info) override;
- virtual void OnRemovableStorageDetached(const StorageInfo& info) OVERRIDE;
+ virtual void OnRemovableStorageDetached(const StorageInfo& info) override;
int attach_calls() { return attach_calls_; }

Powered by Google App Engine
This is Rietveld 408576698