Chromium Code Reviews| Index: net/proxy/network_delegate_error_observer_unittest.cc |
| diff --git a/net/proxy/network_delegate_error_observer_unittest.cc b/net/proxy/network_delegate_error_observer_unittest.cc |
| index b64e9bf97e965da8bca38de6c8ff4b775af72877..e3f2d3c950001a8b4057de0cf74b613c90245d7c 100644 |
| --- a/net/proxy/network_delegate_error_observer_unittest.cc |
| +++ b/net/proxy/network_delegate_error_observer_unittest.cc |
| @@ -63,6 +63,17 @@ class TestNetworkDelegate : public net::NetworkDelegate { |
| AuthCredentials* credentials) OVERRIDE { |
| return AUTH_REQUIRED_RESPONSE_NO_ACTION; |
| } |
| + virtual bool OnReadingCookies( |
| + const URLRequest* request, |
| + const CookieList& cookie_list) { |
|
willchan no longer on Chromium
2012/03/01 20:30:10
OVERRIDE
|
| + return true; |
| + } |
| + virtual bool OnSettingCookie( |
| + const URLRequest* request, |
| + const std::string& cookie_line, |
| + CookieOptions* options) { |
|
willchan no longer on Chromium
2012/03/01 20:30:10
OVERRIDE
|
| + return true; |
| + } |
| bool got_pac_error_; |
| }; |