| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_BASE_MOCK_HOST_RESOLVER_H_ | 5 #ifndef NET_BASE_MOCK_HOST_RESOLVER_H_ |
| 6 #define NET_BASE_MOCK_HOST_RESOLVER_H_ | 6 #define NET_BASE_MOCK_HOST_RESOLVER_H_ |
| 7 | 7 |
| 8 #include <list> | 8 #include <list> |
| 9 | 9 |
| 10 #include "base/waitable_event.h" | 10 #include "base/waitable_event.h" |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 public: | 40 public: |
| 41 // HostResolver methods: | 41 // HostResolver methods: |
| 42 virtual int Resolve(const RequestInfo& info, | 42 virtual int Resolve(const RequestInfo& info, |
| 43 AddressList* addresses, | 43 AddressList* addresses, |
| 44 CompletionCallback* callback, | 44 CompletionCallback* callback, |
| 45 RequestHandle* out_req, | 45 RequestHandle* out_req, |
| 46 LoadLog* load_log); | 46 LoadLog* load_log); |
| 47 virtual void CancelRequest(RequestHandle req); | 47 virtual void CancelRequest(RequestHandle req); |
| 48 virtual void AddObserver(Observer* observer); | 48 virtual void AddObserver(Observer* observer); |
| 49 virtual void RemoveObserver(Observer* observer); | 49 virtual void RemoveObserver(Observer* observer); |
| 50 virtual HostCache* GetHostCache(); | |
| 51 // TODO(eroman): temp hack for http://crbug.com/18373 | 50 // TODO(eroman): temp hack for http://crbug.com/18373 |
| 52 virtual void Shutdown(); | 51 virtual void Shutdown(); |
| 53 | 52 |
| 54 RuleBasedHostResolverProc* rules() { return rules_; } | 53 RuleBasedHostResolverProc* rules() { return rules_; } |
| 55 | 54 |
| 56 // Controls whether resolutions complete synchronously or asynchronously. | 55 // Controls whether resolutions complete synchronously or asynchronously. |
| 57 void set_synchronous_mode(bool is_synchronous) { | 56 void set_synchronous_mode(bool is_synchronous) { |
| 58 synchronous_mode_ = is_synchronous; | 57 synchronous_mode_ = is_synchronous; |
| 59 } | 58 } |
| 60 | 59 |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 void Init(HostResolverProc* proc); | 184 void Init(HostResolverProc* proc); |
| 186 | 185 |
| 187 private: | 186 private: |
| 188 scoped_refptr<HostResolverProc> current_proc_; | 187 scoped_refptr<HostResolverProc> current_proc_; |
| 189 scoped_refptr<HostResolverProc> previous_proc_; | 188 scoped_refptr<HostResolverProc> previous_proc_; |
| 190 }; | 189 }; |
| 191 | 190 |
| 192 } // namespace net | 191 } // namespace net |
| 193 | 192 |
| 194 #endif // NET_BASE_MOCK_HOST_RESOLVER_H_ | 193 #endif // NET_BASE_MOCK_HOST_RESOLVER_H_ |
| OLD | NEW |