| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_MOCK_PROXY_RESOLVER_H_ | 5 #ifndef NET_PROXY_MOCK_PROXY_RESOLVER_H_ |
| 6 #define NET_PROXY_MOCK_PROXY_RESOLVER_H_ | 6 #define NET_PROXY_MOCK_PROXY_RESOLVER_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/macros.h" |
| 10 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
| 11 #include "net/base/net_errors.h" | 12 #include "net/base/net_errors.h" |
| 12 #include "net/proxy/proxy_resolver.h" | 13 #include "net/proxy/proxy_resolver.h" |
| 13 #include "net/proxy/proxy_resolver_factory.h" | 14 #include "net/proxy/proxy_resolver_factory.h" |
| 14 #include "url/gurl.h" | 15 #include "url/gurl.h" |
| 15 | 16 |
| 16 namespace base { | 17 namespace base { |
| 17 class MessageLoop; | 18 class MessageLoop; |
| 18 } | 19 } |
| 19 | 20 |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 | 158 |
| 158 private: | 159 private: |
| 159 ProxyResolver* impl_; | 160 ProxyResolver* impl_; |
| 160 | 161 |
| 161 DISALLOW_COPY_AND_ASSIGN(ForwardingProxyResolver); | 162 DISALLOW_COPY_AND_ASSIGN(ForwardingProxyResolver); |
| 162 }; | 163 }; |
| 163 | 164 |
| 164 } // namespace net | 165 } // namespace net |
| 165 | 166 |
| 166 #endif // NET_PROXY_MOCK_PROXY_RESOLVER_H_ | 167 #endif // NET_PROXY_MOCK_PROXY_RESOLVER_H_ |
| OLD | NEW |