OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 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 | 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 #ifndef NET_PROXY_PROXY_CONFIG_SERVICE_WIN_H_ | 5 #ifndef NET_PROXY_PROXY_CONFIG_SERVICE_WIN_H_ |
6 #define NET_PROXY_PROXY_CONFIG_SERVICE_WIN_H_ | 6 #define NET_PROXY_PROXY_CONFIG_SERVICE_WIN_H_ |
7 | 7 |
8 #include <windows.h> | 8 #include <windows.h> |
9 #include <winhttp.h> | 9 #include <winhttp.h> |
10 | 10 |
11 #include <vector> | 11 #include <vector> |
12 | 12 |
13 #include "base/compiler_specific.h" | 13 #include "base/compiler_specific.h" |
14 #include "base/gtest_prod_util.h" | 14 #include "base/gtest_prod_util.h" |
| 15 #include "net/base/net_export.h" |
15 #include "net/proxy/polling_proxy_config_service.h" | 16 #include "net/proxy/polling_proxy_config_service.h" |
16 | 17 |
17 namespace base { | 18 namespace base { |
18 namespace win { | 19 namespace win { |
19 class RegKey; | 20 class RegKey; |
20 } | 21 } |
21 } // namespace base. | 22 } // namespace base. |
22 | 23 |
23 namespace net { | 24 namespace net { |
24 | 25 |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 static void SetFromIEConfig( | 74 static void SetFromIEConfig( |
74 ProxyConfig* config, | 75 ProxyConfig* config, |
75 const WINHTTP_CURRENT_USER_IE_PROXY_CONFIG& ie_config); | 76 const WINHTTP_CURRENT_USER_IE_PROXY_CONFIG& ie_config); |
76 | 77 |
77 RegKeyList keys_to_watch_; | 78 RegKeyList keys_to_watch_; |
78 }; | 79 }; |
79 | 80 |
80 } // namespace net | 81 } // namespace net |
81 | 82 |
82 #endif // NET_PROXY_PROXY_CONFIG_SERVICE_WIN_H_ | 83 #endif // NET_PROXY_PROXY_CONFIG_SERVICE_WIN_H_ |
OLD | NEW |