| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chromeos/network/shill_property_handler.h" | 5 #include "chromeos/network/shill_property_handler.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 | 8 |
| 9 #include <sstream> | 9 #include <sstream> |
| 10 | 10 |
| (...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 214 const std::string& check_portal_list) { | 214 const std::string& check_portal_list) { |
| 215 base::StringValue value(check_portal_list); | 215 base::StringValue value(check_portal_list); |
| 216 shill_manager_->SetProperty( | 216 shill_manager_->SetProperty( |
| 217 shill::kCheckPortalListProperty, value, base::Bind(&base::DoNothing), | 217 shill::kCheckPortalListProperty, value, base::Bind(&base::DoNothing), |
| 218 base::Bind(&network_handler::ShillErrorCallbackFunction, | 218 base::Bind(&network_handler::ShillErrorCallbackFunction, |
| 219 "SetCheckPortalList Failed", "Manager", | 219 "SetCheckPortalList Failed", "Manager", |
| 220 network_handler::ErrorCallback())); | 220 network_handler::ErrorCallback())); |
| 221 } | 221 } |
| 222 | 222 |
| 223 void ShillPropertyHandler::SetWakeOnLanEnabled(bool enabled) { | 223 void ShillPropertyHandler::SetWakeOnLanEnabled(bool enabled) { |
| 224 base::FundamentalValue value(enabled); | 224 base::Value value(enabled); |
| 225 shill_manager_->SetProperty( | 225 shill_manager_->SetProperty( |
| 226 shill::kWakeOnLanEnabledProperty, value, base::Bind(&base::DoNothing), | 226 shill::kWakeOnLanEnabledProperty, value, base::Bind(&base::DoNothing), |
| 227 base::Bind(&network_handler::ShillErrorCallbackFunction, | 227 base::Bind(&network_handler::ShillErrorCallbackFunction, |
| 228 "SetWakeOnLanEnabled Failed", "Manager", | 228 "SetWakeOnLanEnabled Failed", "Manager", |
| 229 network_handler::ErrorCallback())); | 229 network_handler::ErrorCallback())); |
| 230 } | 230 } |
| 231 | 231 |
| 232 void ShillPropertyHandler::SetNetworkThrottlingStatus( | 232 void ShillPropertyHandler::SetNetworkThrottlingStatus( |
| 233 bool throttling_enabled, | 233 bool throttling_enabled, |
| 234 uint32_t upload_rate_kbits, | 234 uint32_t upload_rate_kbits, |
| (...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 565 NET_LOG(EVENT) << "Failed to get IP Config properties: " << ip_config_path | 565 NET_LOG(EVENT) << "Failed to get IP Config properties: " << ip_config_path |
| 566 << ": " << call_status << ", For: " << path; | 566 << ": " << call_status << ", For: " << path; |
| 567 return; | 567 return; |
| 568 } | 568 } |
| 569 NET_LOG(EVENT) << "IP Config properties received: " << path; | 569 NET_LOG(EVENT) << "IP Config properties received: " << path; |
| 570 listener_->UpdateIPConfigProperties(type, path, ip_config_path, properties); | 570 listener_->UpdateIPConfigProperties(type, path, ip_config_path, properties); |
| 571 } | 571 } |
| 572 | 572 |
| 573 } // namespace internal | 573 } // namespace internal |
| 574 } // namespace chromeos | 574 } // namespace chromeos |
| OLD | NEW |