| Index: chromeos/network/network_state_handler.h
|
| diff --git a/chromeos/network/network_state_handler.h b/chromeos/network/network_state_handler.h
|
| index 20f05772ec4ab63739472df41107841244f21be5..6fd92a3273743d46d502a889d31f77ca1e17d9e5 100644
|
| --- a/chromeos/network/network_state_handler.h
|
| +++ b/chromeos/network/network_state_handler.h
|
| @@ -244,30 +244,30 @@ class CHROMEOS_EXPORT NetworkStateHandler
|
| // This adds new entries to |network_list_| or |device_list_| and deletes any
|
| // entries that are no longer in the list.
|
| virtual void UpdateManagedList(ManagedState::ManagedType type,
|
| - const base::ListValue& entries) OVERRIDE;
|
| + const base::ListValue& entries) override;
|
|
|
| // The list of profiles changed (i.e. a user has logged in). Re-request
|
| // properties for all services since they may have changed.
|
| - virtual void ProfileListChanged() OVERRIDE;
|
| + virtual void ProfileListChanged() override;
|
|
|
| // Parses the properties for the network service or device. Mostly calls
|
| // managed->PropertyChanged(key, value) for each dictionary entry.
|
| virtual void UpdateManagedStateProperties(
|
| ManagedState::ManagedType type,
|
| const std::string& path,
|
| - const base::DictionaryValue& properties) OVERRIDE;
|
| + const base::DictionaryValue& properties) override;
|
|
|
| // Called by ShillPropertyHandler when a watched service property changes.
|
| virtual void UpdateNetworkServiceProperty(
|
| const std::string& service_path,
|
| const std::string& key,
|
| - const base::Value& value) OVERRIDE;
|
| + const base::Value& value) override;
|
|
|
| // Called by ShillPropertyHandler when a watched device property changes.
|
| virtual void UpdateDeviceProperty(
|
| const std::string& device_path,
|
| const std::string& key,
|
| - const base::Value& value) OVERRIDE;
|
| + const base::Value& value) override;
|
|
|
| // Called by ShillPropertyHandler when a watched network or device
|
| // IPConfig property changes.
|
| @@ -275,26 +275,26 @@ class CHROMEOS_EXPORT NetworkStateHandler
|
| ManagedState::ManagedType type,
|
| const std::string& path,
|
| const std::string& ip_config_path,
|
| - const base::DictionaryValue& properties) OVERRIDE;
|
| + const base::DictionaryValue& properties) override;
|
|
|
| // Called by ShillPropertyHandler when the portal check list manager property
|
| // changes.
|
| virtual void CheckPortalListChanged(
|
| - const std::string& check_portal_list) OVERRIDE;
|
| + const std::string& check_portal_list) override;
|
|
|
| // Called by ShillPropertyHandler when a technology list changes.
|
| - virtual void TechnologyListChanged() OVERRIDE;
|
| + virtual void TechnologyListChanged() override;
|
|
|
| // Called by |shill_property_handler_| when the service or device list has
|
| // changed and all entries have been updated. This updates the list and
|
| // notifies observers.
|
| virtual void ManagedStateListChanged(
|
| - ManagedState::ManagedType type) OVERRIDE;
|
| + ManagedState::ManagedType type) override;
|
|
|
| // Called when the default network service changes. Sets default_network_path_
|
| // and notifies listeners.
|
| virtual void DefaultNetworkServiceChanged(
|
| - const std::string& service_path) OVERRIDE;
|
| + const std::string& service_path) override;
|
|
|
| // Called after construction. Called explicitly by tests after adding
|
| // test observers.
|
|
|