| Index: content/shell/shell_network_delegate.cc
|
| diff --git a/content/shell/shell_network_delegate.cc b/content/shell/shell_network_delegate.cc
|
| index 91bd3496974043504d1dea4765883c881239df6c..1faa68d89727e0a781feb298bd3af1ef3d45e162 100644
|
| --- a/content/shell/shell_network_delegate.cc
|
| +++ b/content/shell/shell_network_delegate.cc
|
| @@ -70,15 +70,19 @@ ShellNetworkDelegate::AuthRequiredResponse ShellNetworkDelegate::OnAuthRequired(
|
| return AUTH_REQUIRED_RESPONSE_NO_ACTION;
|
| }
|
|
|
| -bool ShellNetworkDelegate::CanGetCookies(
|
| - const net::URLRequest* request,
|
| - const net::CookieList& cookie_list) {
|
| +bool ShellNetworkDelegate::OnCanGetCookies(const net::URLRequest& request,
|
| + const net::CookieList& cookie_list) {
|
| return true;
|
| }
|
|
|
| -bool ShellNetworkDelegate::CanSetCookie(const net::URLRequest* request,
|
| - const std::string& cookie_line,
|
| - net::CookieOptions* options) {
|
| +bool ShellNetworkDelegate::OnCanSetCookie(const net::URLRequest& request,
|
| + const std::string& cookie_line,
|
| + net::CookieOptions* options) {
|
| + return true;
|
| +}
|
| +
|
| +bool ShellNetworkDelegate::OnCanAccessFile(const net::URLRequest& request,
|
| + const FilePath& path) const {
|
| return true;
|
| }
|
|
|
|
|