| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "chrome/browser/chromeos/proxy_config_service.h" | |
| 6 | |
| 7 namespace chromeos { | |
| 8 | |
| 9 ProxyConfigService::ProxyConfigService( | |
| 10 const scoped_refptr<ProxyConfigServiceImpl>& impl) | |
| 11 : impl_(impl) { | |
| 12 } | |
| 13 | |
| 14 ProxyConfigService::~ProxyConfigService() {} | |
| 15 | |
| 16 void ProxyConfigService::AddObserver(Observer* observer) { | |
| 17 impl_->AddObserver(observer); | |
| 18 } | |
| 19 | |
| 20 void ProxyConfigService::RemoveObserver(Observer* observer) { | |
| 21 impl_->RemoveObserver(observer); | |
| 22 } | |
| 23 | |
| 24 ProxyConfigService::ConfigAvailability ProxyConfigService::GetLatestProxyConfig( | |
| 25 net::ProxyConfig* config) { | |
| 26 return impl_->IOGetProxyConfig(config); | |
| 27 } | |
| 28 | |
| 29 } // namespace chromeos | |
| OLD | NEW |