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

Unified Diff: chrome/browser/chromeos/options/wimax_config_view.h

Issue 854043002: Update {virtual,override,final} to follow C++11 style in chrome/browser/chromeos/options. (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/chromeos/options/wifi_config_view.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/options/wimax_config_view.h
diff --git a/chrome/browser/chromeos/options/wimax_config_view.h b/chrome/browser/chromeos/options/wimax_config_view.h
index 95242e553b0a3c4f4e0a33b4aaa302aebde1da01..fbe31a954f89d5d6d9f83dbd653bce5212f358f1 100644
--- a/chrome/browser/chromeos/options/wimax_config_view.h
+++ b/chrome/browser/chromeos/options/wimax_config_view.h
@@ -33,25 +33,24 @@ class WimaxConfigView : public ChildNetworkConfigView,
// Configuration dialog for a WiMax network. If |service_path| is not empty
// it identifies the network to be configured.
WimaxConfigView(NetworkConfigView* parent, const std::string& service_path);
- virtual ~WimaxConfigView();
+ ~WimaxConfigView() override;
// views::TextfieldController:
- virtual void ContentsChanged(views::Textfield* sender,
- const base::string16& new_contents) override;
- virtual bool HandleKeyEvent(views::Textfield* sender,
- const ui::KeyEvent& key_event) override;
+ void ContentsChanged(views::Textfield* sender,
+ const base::string16& new_contents) override;
+ bool HandleKeyEvent(views::Textfield* sender,
+ const ui::KeyEvent& key_event) override;
// views::ButtonListener:
- virtual void ButtonPressed(views::Button* sender,
- const ui::Event& event) override;
+ void ButtonPressed(views::Button* sender, const ui::Event& event) override;
// ChildNetworkConfigView:
- virtual base::string16 GetTitle() const override;
- virtual views::View* GetInitiallyFocusedView() override;
- virtual bool CanLogin() override;
- virtual bool Login() override;
- virtual void Cancel() override;
- virtual void InitFocus() override;
+ base::string16 GetTitle() const override;
+ views::View* GetInitiallyFocusedView() override;
+ bool CanLogin() override;
+ bool Login() override;
+ void Cancel() override;
+ void InitFocus() override;
private:
// Initializes UI.
« no previous file with comments | « chrome/browser/chromeos/options/wifi_config_view.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698