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

Side by Side Diff: net/proxy/proxy_config_service_fixed.h

Issue 992733002: Remove //net (except for Android test stuff) and sdch (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 9 months 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
(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 #ifndef NET_PROXY_PROXY_CONFIG_SERVICE_FIXED_H_
6 #define NET_PROXY_PROXY_CONFIG_SERVICE_FIXED_H_
7
8 #include "base/compiler_specific.h"
9 #include "net/base/net_errors.h"
10 #include "net/proxy/proxy_config.h"
11 #include "net/proxy/proxy_config_service.h"
12
13 namespace net {
14
15 // Implementation of ProxyConfigService that returns a fixed result.
16 class NET_EXPORT ProxyConfigServiceFixed : public ProxyConfigService {
17 public:
18 explicit ProxyConfigServiceFixed(const ProxyConfig& pc);
19 ~ProxyConfigServiceFixed() override;
20
21 // ProxyConfigService methods:
22 void AddObserver(Observer* observer) override {}
23 void RemoveObserver(Observer* observer) override {}
24 ConfigAvailability GetLatestProxyConfig(ProxyConfig* config) override;
25
26 private:
27 ProxyConfig pc_;
28 };
29
30 } // namespace net
31
32 #endif // NET_PROXY_PROXY_CONFIG_SERVICE_FIXED_H_
OLDNEW
« no previous file with comments | « net/proxy/proxy_config_service_common_unittest.cc ('k') | net/proxy/proxy_config_service_fixed.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698