| Index: webkit/tools/test_shell/simple_resource_loader_bridge.cc
|
| diff --git a/webkit/tools/test_shell/simple_resource_loader_bridge.cc b/webkit/tools/test_shell/simple_resource_loader_bridge.cc
|
| index 6498e758790bc71b03fcfa712a06272683ba6d50..68e3f0e1b433f9e00e2c7bafd8abe1b0ab808497 100644
|
| --- a/webkit/tools/test_shell/simple_resource_loader_bridge.cc
|
| +++ b/webkit/tools/test_shell/simple_resource_loader_bridge.cc
|
| @@ -469,7 +469,7 @@ class RequestProxy : public net::URLRequest::Delegate,
|
| const net::CookieList& cookie_list) const OVERRIDE {
|
| StaticCookiePolicy::Type policy_type = g_accept_all_cookies ?
|
| StaticCookiePolicy::ALLOW_ALL_COOKIES :
|
| - StaticCookiePolicy::BLOCK_SETTING_THIRD_PARTY_COOKIES;
|
| + StaticCookiePolicy::BLOCK_ALL_THIRD_PARTY_COOKIES;
|
|
|
| StaticCookiePolicy policy(policy_type);
|
| int rv = policy.CanGetCookies(
|
| @@ -482,7 +482,7 @@ class RequestProxy : public net::URLRequest::Delegate,
|
| net::CookieOptions* options) const OVERRIDE {
|
| StaticCookiePolicy::Type policy_type = g_accept_all_cookies ?
|
| StaticCookiePolicy::ALLOW_ALL_COOKIES :
|
| - StaticCookiePolicy::BLOCK_SETTING_THIRD_PARTY_COOKIES;
|
| + StaticCookiePolicy::BLOCK_ALL_THIRD_PARTY_COOKIES;
|
|
|
| StaticCookiePolicy policy(policy_type);
|
| int rv = policy.CanSetCookie(
|
|
|