| Index: chromeos/network/network_state_handler.cc
|
| diff --git a/chromeos/network/network_state_handler.cc b/chromeos/network/network_state_handler.cc
|
| index e1f18902b2dc193c224172147fc9ced63ea196d0..5007837424f23feee9bb9d1329719f5c4ffe6ad7 100644
|
| --- a/chromeos/network/network_state_handler.cc
|
| +++ b/chromeos/network/network_state_handler.cc
|
| @@ -144,6 +144,15 @@ void NetworkStateHandler::SetTechnologyEnabled(
|
| NotifyDeviceListChanged();
|
| }
|
|
|
| +void NetworkStateHandler::SetProhibitedTechnologies(
|
| + const std::vector<std::string>& prohibited_technologies,
|
| + const network_handler::ErrorCallback& error_callback) {
|
| + shill_property_handler_->SetProhibitedTechnologies(prohibited_technologies,
|
| + error_callback);
|
| + // Signal Device/Technology state changed.
|
| + NotifyDeviceListChanged();
|
| +}
|
| +
|
| const DeviceState* NetworkStateHandler::GetDeviceState(
|
| const std::string& device_path) const {
|
| const DeviceState* device = GetModifiableDeviceState(device_path);
|
|
|