summaryrefslogtreecommitdiffstats
path: root/net/proxy/proxy_config_service_fixed.cc
diff options
context:
space:
mode:
Diffstat (limited to 'net/proxy/proxy_config_service_fixed.cc')
-rw-r--r--net/proxy/proxy_config_service_fixed.cc7
1 files changed, 4 insertions, 3 deletions
diff --git a/net/proxy/proxy_config_service_fixed.cc b/net/proxy/proxy_config_service_fixed.cc
index b23c265..3081ea5 100644
--- a/net/proxy/proxy_config_service_fixed.cc
+++ b/net/proxy/proxy_config_service_fixed.cc
@@ -1,4 +1,4 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -12,9 +12,10 @@ ProxyConfigServiceFixed::ProxyConfigServiceFixed(const ProxyConfig& pc)
ProxyConfigServiceFixed::~ProxyConfigServiceFixed() {}
-bool ProxyConfigServiceFixed::GetLatestProxyConfig(ProxyConfig* config) {
+ProxyConfigService::ConfigAvailability
+ ProxyConfigServiceFixed::GetLatestProxyConfig(ProxyConfig* config) {
*config = pc_;
- return true;
+ return CONFIG_VALID;
}
} // namespace net