OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #include "base/auto_reset.h" | 5 #include "base/auto_reset.h" |
6 #include "base/command_line.h" | 6 #include "base/command_line.h" |
7 #include "base/message_loop.h" | 7 #include "base/message_loop.h" |
8 #include "chrome/browser/content_settings/cookie_settings.h" | 8 #include "chrome/browser/content_settings/cookie_settings.h" |
9 #include "chrome/browser/prefs/pref_service.h" | 9 #include "chrome/browser/prefs/pref_service.h" |
10 #include "chrome/common/chrome_switches.h" | 10 #include "chrome/common/chrome_switches.h" |
11 #include "chrome/common/content_settings_pattern.h" | 11 #include "chrome/common/content_settings_pattern.h" |
12 #include "chrome/common/pref_names.h" | 12 #include "chrome/common/pref_names.h" |
13 #include "chrome/test/base/testing_profile.h" | 13 #include "chrome/test/base/testing_profile.h" |
14 #include "content/test/test_browser_thread.h" | 14 #include "content/public/test/test_browser_thread.h" |
15 #include "googleurl/src/gurl.h" | 15 #include "googleurl/src/gurl.h" |
16 #include "net/base/static_cookie_policy.h" | 16 #include "net/base/static_cookie_policy.h" |
17 #include "testing/gtest/include/gtest/gtest.h" | 17 #include "testing/gtest/include/gtest/gtest.h" |
18 | 18 |
19 using content::BrowserThread; | 19 using content::BrowserThread; |
20 | 20 |
21 namespace { | 21 namespace { |
22 | 22 |
23 class CookieSettingsTest : public testing::Test { | 23 class CookieSettingsTest : public testing::Test { |
24 public: | 24 public: |
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
266 CookieSettings::Factory::GetForProfile(&profile); | 266 CookieSettings::Factory::GetForProfile(&profile); |
267 profile.GetPrefs()->SetBoolean(prefs::kBlockThirdPartyCookies, true); | 267 profile.GetPrefs()->SetBoolean(prefs::kBlockThirdPartyCookies, true); |
268 | 268 |
269 // XHRs stemming from extensions are exempt from third-party cookie blocking | 269 // XHRs stemming from extensions are exempt from third-party cookie blocking |
270 // rules (as the first party is always the extension's security origin). | 270 // rules (as the first party is always the extension's security origin). |
271 EXPECT_TRUE(cookie_settings->IsSettingCookieAllowed( | 271 EXPECT_TRUE(cookie_settings->IsSettingCookieAllowed( |
272 kBlockedSite, kExtensionURL)); | 272 kBlockedSite, kExtensionURL)); |
273 } | 273 } |
274 | 274 |
275 } // namespace | 275 } // namespace |
OLD | NEW |