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

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

Issue 854063002: Update {virtual,override,final} to follow C++11 style chrome/browser/ui/webui/chromeos. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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 2d9e241ddbd0c054acc7d9922ae392c5c0d58f21..354a3c37a97a4d536a3556197e9afb0fde73462b 100644
--- a/chrome/browser/ui/webui/chromeos/provided_file_systems_ui.cc
+++ b/chrome/browser/ui/webui/chromeos/provided_file_systems_ui.cc
@@ -134,27 +134,24 @@ class ProvidedFileSystemsWebUIHandler
public:
ProvidedFileSystemsWebUIHandler() : weak_ptr_factory_(this) {}
- virtual ~ProvidedFileSystemsWebUIHandler();
+ ~ProvidedFileSystemsWebUIHandler() override;
// 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;
- virtual void OnRequestFulfilled(
- int request_id,
- const file_system_provider::RequestValue& result,
- 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;
+ void OnRequestCreated(int request_id,
+ file_system_provider::RequestType type) override;
+ void OnRequestDestroyed(int request_id) override;
+ void OnRequestExecuted(int request_id) override;
+ void OnRequestFulfilled(int request_id,
+ const file_system_provider::RequestValue& result,
+ bool has_more) override;
+ void OnRequestRejected(int request_id,
+ const file_system_provider::RequestValue& result,
+ base::File::Error error) override;
+ void OnRequestTimeouted(int request_id) override;
private:
// content::WebUIMessageHandler overrides.
- virtual void RegisterMessages() override;
+ 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