| 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 f4b4ba75b15248389d2ed8812d2146d9aaa08fbc..7c8efdff2e7b9786697ef022d0079b6e6d1a3a4f 100644
|
| --- a/net/proxy/network_delegate_error_observer_unittest.cc
|
| +++ b/net/proxy/network_delegate_error_observer_unittest.cc
|
| @@ -63,15 +63,17 @@ class TestNetworkDelegate : public net::NetworkDelegate {
|
| AuthCredentials* credentials) OVERRIDE {
|
| return AUTH_REQUIRED_RESPONSE_NO_ACTION;
|
| }
|
| - virtual bool CanGetCookies(
|
| - const URLRequest* request,
|
| - const CookieList& cookie_list) OVERRIDE {
|
| + virtual bool OnCanGetCookies(const URLRequest& request,
|
| + const CookieList& cookie_list) OVERRIDE {
|
| return true;
|
| }
|
| - virtual bool CanSetCookie(
|
| - const URLRequest* request,
|
| - const std::string& cookie_line,
|
| - CookieOptions* options) OVERRIDE {
|
| + virtual bool OnCanSetCookie(const URLRequest& request,
|
| + const std::string& cookie_line,
|
| + CookieOptions* options) OVERRIDE {
|
| + return true;
|
| + }
|
| + virtual bool OnCanAccessFile(const net::URLRequest& request,
|
| + const FilePath& path) const OVERRIDE {
|
| return true;
|
| }
|
|
|
|
|