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

Unified Diff: components/wifi/wifi_service_win.cc

Issue 623133002: replace OVERRIDE and FINAL with override and final in components/ (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 | « components/wifi/wifi_service_mac.mm ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/wifi/wifi_service_win.cc
diff --git a/components/wifi/wifi_service_win.cc b/components/wifi/wifi_service_win.cc
index 119fbe528693c0c40911770803a5ac26ae21528e..fe2d308255977f276aa1bc9e3d327419c7b92217 100644
--- a/components/wifi/wifi_service_win.cc
+++ b/components/wifi/wifi_service_win.cc
@@ -178,53 +178,53 @@ class WiFiServiceImpl : public WiFiService {
// WiFiService interface implementation.
virtual void Initialize(
- scoped_refptr<base::SequencedTaskRunner> task_runner) OVERRIDE;
+ scoped_refptr<base::SequencedTaskRunner> task_runner) override;
- virtual void UnInitialize() OVERRIDE;
+ virtual void UnInitialize() override;
virtual void GetProperties(const std::string& network_guid,
base::DictionaryValue* properties,
- std::string* error) OVERRIDE;
+ std::string* error) override;
virtual void GetManagedProperties(const std::string& network_guid,
base::DictionaryValue* managed_properties,
- std::string* error) OVERRIDE;
+ std::string* error) override;
virtual void GetState(const std::string& network_guid,
base::DictionaryValue* properties,
- std::string* error) OVERRIDE;
+ std::string* error) override;
virtual void SetProperties(const std::string& network_guid,
scoped_ptr<base::DictionaryValue> properties,
- std::string* error) OVERRIDE;
+ std::string* error) override;
virtual void CreateNetwork(bool shared,
scoped_ptr<base::DictionaryValue> properties,
std::string* network_guid,
- std::string* error) OVERRIDE;
+ std::string* error) override;
virtual void GetVisibleNetworks(const std::string& network_type,
base::ListValue* network_list,
- bool include_details) OVERRIDE;
+ bool include_details) override;
- virtual void RequestNetworkScan() OVERRIDE;
+ virtual void RequestNetworkScan() override;
virtual void StartConnect(const std::string& network_guid,
- std::string* error) OVERRIDE;
+ std::string* error) override;
virtual void StartDisconnect(const std::string& network_guid,
- std::string* error) OVERRIDE;
+ std::string* error) override;
virtual void GetKeyFromSystem(const std::string& network_guid,
std::string* key_data,
- std::string* error) OVERRIDE;
+ std::string* error) override;
virtual void SetEventObservers(
scoped_refptr<base::MessageLoopProxy> message_loop_proxy,
const NetworkGuidListCallback& networks_changed_observer,
- const NetworkGuidListCallback& network_list_changed_observer) OVERRIDE;
+ const NetworkGuidListCallback& network_list_changed_observer) override;
- virtual void RequestConnectedNetworkUpdate() OVERRIDE {}
+ virtual void RequestConnectedNetworkUpdate() override {}
private:
typedef int32 EncryptionType;
« no previous file with comments | « components/wifi/wifi_service_mac.mm ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698