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

Unified Diff: chrome/browser/ui/webui/sync_file_system_internals/sync_file_system_internals_handler.h

Issue 629463003: replace OVERRIDE and FINAL with override and final in chrome/browser/ui/[w-z]* (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: chrome/browser/ui/webui/sync_file_system_internals/sync_file_system_internals_handler.h
diff --git a/chrome/browser/ui/webui/sync_file_system_internals/sync_file_system_internals_handler.h b/chrome/browser/ui/webui/sync_file_system_internals/sync_file_system_internals_handler.h
index 61a8a7bbc777924a655808984af51275c29c5083..33f8fc41d83254b2ca9416fb162fc9992ac30f79 100644
--- a/chrome/browser/ui/webui/sync_file_system_internals/sync_file_system_internals_handler.h
+++ b/chrome/browser/ui/webui/sync_file_system_internals/sync_file_system_internals_handler.h
@@ -29,22 +29,22 @@ class SyncFileSystemInternalsHandler
virtual ~SyncFileSystemInternalsHandler();
// content::WebUIMessageHandler implementation.
- virtual void RegisterMessages() OVERRIDE;
+ virtual void RegisterMessages() override;
// sync_file_system::SyncEventObserver interface implementation.
virtual void OnSyncStateUpdated(
const GURL& app_origin,
sync_file_system::SyncServiceState state,
- const std::string& description) OVERRIDE;
+ const std::string& description) override;
virtual void OnFileSynced(const storage::FileSystemURL& url,
sync_file_system::SyncFileType file_type,
sync_file_system::SyncFileStatus status,
sync_file_system::SyncAction action,
- sync_file_system::SyncDirection direction) OVERRIDE;
+ sync_file_system::SyncDirection direction) override;
// sync_file_system::TaskLogger::Observer implementation.
virtual void OnLogRecorded(
- const sync_file_system::TaskLogger::TaskLog& task_log) OVERRIDE;
+ const sync_file_system::TaskLogger::TaskLog& task_log) override;
private:
void GetServiceStatus(const base::ListValue* args);

Powered by Google App Engine
This is Rietveld 408576698