| Index: chromeos/network/shill_property_handler.cc
|
| diff --git a/chromeos/network/shill_property_handler.cc b/chromeos/network/shill_property_handler.cc
|
| index e3083cd0c84a00624f84dc727e5ff4e1234462cd..38da21cbf6e0f545cac983e7b0d828eb6949ad73 100644
|
| --- a/chromeos/network/shill_property_handler.cc
|
| +++ b/chromeos/network/shill_property_handler.cc
|
| @@ -163,6 +163,14 @@ void ShillPropertyHandler::RequestScan() const {
|
| kLogModule, "", network_handler::ErrorCallback()));
|
| }
|
|
|
| +void ShillPropertyHandler::ConnectToBestServices() const {
|
| + network_event_log::AddEntry(kLogModule, "ConnectToBestServices", "");
|
| + shill_manager_->ConnectToBestServices(
|
| + base::Bind(&base::DoNothing),
|
| + base::Bind(&network_handler::ShillErrorCallbackFunction,
|
| + kLogModule, "", network_handler::ErrorCallback()));
|
| +}
|
| +
|
| void ShillPropertyHandler::RequestProperties(ManagedState::ManagedType type,
|
| const std::string& path) {
|
| if (pending_updates_[type].find(path) != pending_updates_[type].end())
|
|
|