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

Side by Side Diff: chrome/browser/chromeos/proxy_config_service.cc

Issue 8102019: redesign and reimplement proxy config service and tracker, revise proxy ui on cros (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 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 | Annotate | Revision Log
OLDNEW
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698