| 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/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| 11 #include "googleurl/src/gurl.h" | |
| 12 #include "net/base/net_errors.h" | 11 #include "net/base/net_errors.h" |
| 13 #include "net/proxy/proxy_resolver.h" | 12 #include "net/proxy/proxy_resolver.h" |
| 13 #include "url/gurl.h" |
| 14 | 14 |
| 15 namespace base { | 15 namespace base { |
| 16 class MessageLoop; | 16 class MessageLoop; |
| 17 } | 17 } |
| 18 | 18 |
| 19 namespace net { | 19 namespace net { |
| 20 | 20 |
| 21 // Asynchronous mock proxy resolver. All requests complete asynchronously, | 21 // Asynchronous mock proxy resolver. All requests complete asynchronously, |
| 22 // user must call Request::CompleteNow() on a pending request to signal it. | 22 // user must call Request::CompleteNow() on a pending request to signal it. |
| 23 class MockAsyncProxyResolverBase : public ProxyResolver { | 23 class MockAsyncProxyResolverBase : public ProxyResolver { |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 | 120 |
| 121 class MockAsyncProxyResolverExpectsBytes : public MockAsyncProxyResolverBase { | 121 class MockAsyncProxyResolverExpectsBytes : public MockAsyncProxyResolverBase { |
| 122 public: | 122 public: |
| 123 MockAsyncProxyResolverExpectsBytes() | 123 MockAsyncProxyResolverExpectsBytes() |
| 124 : MockAsyncProxyResolverBase(true /*expects_pac_bytes*/) {} | 124 : MockAsyncProxyResolverBase(true /*expects_pac_bytes*/) {} |
| 125 }; | 125 }; |
| 126 | 126 |
| 127 } // namespace net | 127 } // namespace net |
| 128 | 128 |
| 129 #endif // NET_PROXY_MOCK_PROXY_RESOLVER_H_ | 129 #endif // NET_PROXY_MOCK_PROXY_RESOLVER_H_ |
| OLD | NEW |