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

Unified Diff: chrome/browser/ui/webui/chromeos/provided_file_systems_ui.cc

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
« no previous file with comments | « chrome/browser/ui/webui/chromeos/power_ui.cc ('k') | chrome/browser/ui/webui/chromeos/proxy_settings_ui.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/webui/chromeos/provided_file_systems_ui.cc
diff --git a/chrome/browser/ui/webui/chromeos/provided_file_systems_ui.cc b/chrome/browser/ui/webui/chromeos/provided_file_systems_ui.cc
index a4aa94a4724d73a75924baaa05efa80cc84a9a30..2d9e241ddbd0c054acc7d9922ae392c5c0d58f21 100644
--- a/chrome/browser/ui/webui/chromeos/provided_file_systems_ui.cc
+++ b/chrome/browser/ui/webui/chromeos/provided_file_systems_ui.cc
@@ -139,22 +139,22 @@ class ProvidedFileSystemsWebUIHandler
// RequestManager::Observer overrides.
virtual void OnRequestCreated(
int request_id,
- file_system_provider::RequestType type) OVERRIDE;
- virtual void OnRequestDestroyed(int request_id) OVERRIDE;
- virtual void OnRequestExecuted(int request_id) OVERRIDE;
+ file_system_provider::RequestType type) override;
+ virtual void OnRequestDestroyed(int request_id) override;
+ virtual void OnRequestExecuted(int request_id) override;
virtual void OnRequestFulfilled(
int request_id,
const file_system_provider::RequestValue& result,
- bool has_more) OVERRIDE;
+ bool has_more) override;
virtual void OnRequestRejected(
int request_id,
const file_system_provider::RequestValue& result,
- base::File::Error error) OVERRIDE;
- virtual void OnRequestTimeouted(int request_id) OVERRIDE;
+ base::File::Error error) override;
+ virtual void OnRequestTimeouted(int request_id) override;
private:
// content::WebUIMessageHandler overrides.
- virtual void RegisterMessages() OVERRIDE;
+ virtual void RegisterMessages() override;
// Gets a file system provider service for the current profile. If not found,
// then NULL.
« no previous file with comments | « chrome/browser/ui/webui/chromeos/power_ui.cc ('k') | chrome/browser/ui/webui/chromeos/proxy_settings_ui.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698