| 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_INIT_PROXY_RESOLVER_H_ | 5 #ifndef NET_PROXY_INIT_PROXY_RESOLVER_H_ |
| 6 #define NET_PROXY_INIT_PROXY_RESOLVER_H_ | 6 #define NET_PROXY_INIT_PROXY_RESOLVER_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/memory/scoped_ptr.h" |
| 11 #include "base/string16.h" | 12 #include "base/string16.h" |
| 12 #include "base/time.h" | 13 #include "base/time.h" |
| 13 #include "base/timer.h" | 14 #include "base/timer.h" |
| 14 #include "base/scoped_ptr.h" | |
| 15 #include "googleurl/src/gurl.h" | 15 #include "googleurl/src/gurl.h" |
| 16 #include "net/base/completion_callback.h" | 16 #include "net/base/completion_callback.h" |
| 17 #include "net/base/net_api.h" | 17 #include "net/base/net_api.h" |
| 18 #include "net/base/net_log.h" | 18 #include "net/base/net_log.h" |
| 19 | 19 |
| 20 namespace net { | 20 namespace net { |
| 21 | 21 |
| 22 class DhcpProxyScriptFetcher; | 22 class DhcpProxyScriptFetcher; |
| 23 class NetLogParameter; | 23 class NetLogParameter; |
| 24 class ProxyConfig; | 24 class ProxyConfig; |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 158 base::OneShotTimer<InitProxyResolver> wait_timer_; | 158 base::OneShotTimer<InitProxyResolver> wait_timer_; |
| 159 | 159 |
| 160 ProxyConfig* effective_config_; | 160 ProxyConfig* effective_config_; |
| 161 | 161 |
| 162 DISALLOW_COPY_AND_ASSIGN(InitProxyResolver); | 162 DISALLOW_COPY_AND_ASSIGN(InitProxyResolver); |
| 163 }; | 163 }; |
| 164 | 164 |
| 165 } // namespace net | 165 } // namespace net |
| 166 | 166 |
| 167 #endif // NET_PROXY_INIT_PROXY_RESOLVER_H_ | 167 #endif // NET_PROXY_INIT_PROXY_RESOLVER_H_ |
| OLD | NEW |