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

Side by Side Diff: chromeos/network/shill_property_handler.cc

Issue 2466693002: [Re-land] Add network throttling as enterprise policy (Closed)
Patch Set: [Re-land] Add network throttling as enterprise policy Created 4 years, 1 month 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 unified diff | Download patch
OLDNEW
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 211 matching lines...) Expand 10 before | Expand all | Expand 10 after
222 222
223 void ShillPropertyHandler::SetWakeOnLanEnabled(bool enabled) { 223 void ShillPropertyHandler::SetWakeOnLanEnabled(bool enabled) {
224 base::FundamentalValue value(enabled); 224 base::FundamentalValue 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(
233 bool throttling_enabled,
234 uint32_t upload_rate_kbits,
235 uint32_t download_rate_kbits) {
236 shill_manager_->SetNetworkThrottlingStatus(
237 throttling_enabled, upload_rate_kbits, download_rate_kbits,
238 base::Bind(&base::DoNothing),
239 base::Bind(&network_handler::ShillErrorCallbackFunction,
240 "SetNetworkThrottlingStatus failed", "Manager",
241 network_handler::ErrorCallback()));
242 }
243
232 void ShillPropertyHandler::RequestScan() const { 244 void ShillPropertyHandler::RequestScan() const {
233 shill_manager_->RequestScan( 245 shill_manager_->RequestScan(
234 "", base::Bind(&base::DoNothing), 246 "", base::Bind(&base::DoNothing),
235 base::Bind(&network_handler::ShillErrorCallbackFunction, 247 base::Bind(&network_handler::ShillErrorCallbackFunction,
236 "RequestScan Failed", "", network_handler::ErrorCallback())); 248 "RequestScan Failed", "", network_handler::ErrorCallback()));
237 } 249 }
238 250
239 void ShillPropertyHandler::RequestProperties(ManagedState::ManagedType type, 251 void ShillPropertyHandler::RequestProperties(ManagedState::ManagedType type,
240 const std::string& path) { 252 const std::string& path) {
241 if (pending_updates_[type].find(path) != pending_updates_[type].end()) 253 if (pending_updates_[type].find(path) != pending_updates_[type].end())
(...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after
553 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
554 << ": " << call_status << ", For: " << path; 566 << ": " << call_status << ", For: " << path;
555 return; 567 return;
556 } 568 }
557 NET_LOG(EVENT) << "IP Config properties received: " << path; 569 NET_LOG(EVENT) << "IP Config properties received: " << path;
558 listener_->UpdateIPConfigProperties(type, path, ip_config_path, properties); 570 listener_->UpdateIPConfigProperties(type, path, ip_config_path, properties);
559 } 571 }
560 572
561 } // namespace internal 573 } // namespace internal
562 } // namespace chromeos 574 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698