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

Unified Diff: chrome/browser/chromeos/options/wifi_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
Index: chrome/browser/chromeos/options/wifi_config_view.h
diff --git a/chrome/browser/chromeos/options/wifi_config_view.h b/chrome/browser/chromeos/options/wifi_config_view.h
index e79156eca72fbd1cb069ddfd28e0554a9efa3cee..448299749e98ee51164a323b9e9b7d29da681621 100644
--- a/chrome/browser/chromeos/options/wifi_config_view.h
+++ b/chrome/browser/chromeos/options/wifi_config_view.h
@@ -57,35 +57,34 @@ class WifiConfigView : public ChildNetworkConfigView,
WifiConfigView(NetworkConfigView* parent,
const std::string& service_path,
bool show_8021x);
- virtual ~WifiConfigView();
+ ~WifiConfigView() 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;
// views::ComboboxListener
- virtual void OnPerformAction(views::Combobox* combobox) override;
+ void OnPerformAction(views::Combobox* combobox) override;
// CertLibrary::Observer
- virtual void OnCertificatesLoaded(bool initial_load) override;
+ void OnCertificatesLoaded(bool initial_load) 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;
- virtual bool IsConfigureDialog() override;
+ base::string16 GetTitle() const override;
+ views::View* GetInitiallyFocusedView() override;
+ bool CanLogin() override;
+ bool Login() override;
+ void Cancel() override;
+ void InitFocus() override;
+ bool IsConfigureDialog() override;
// NetworkStateHandlerObserver
- virtual void NetworkPropertiesUpdated(const NetworkState* network) override;
+ void NetworkPropertiesUpdated(const NetworkState* network) override;
// Parses a UI |property| from the ONC associated with |network|. |key|
// is the property name within the ONC dictionary.
« no previous file with comments | « chrome/browser/chromeos/options/vpn_config_view.cc ('k') | chrome/browser/chromeos/options/wifi_config_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698