Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(149)

Side by Side Diff: chrome/browser/extensions/extension_special_storage_policy_unittest.cc

Issue 10500016: Move test_browser_thread.h from content\test to content\public\test. This way we can enforce that i… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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/message_loop.h" 5 #include "base/message_loop.h"
6 #include "base/values.h" 6 #include "base/values.h"
7 #include "chrome/browser/content_settings/cookie_settings.h" 7 #include "chrome/browser/content_settings/cookie_settings.h"
8 #include "chrome/browser/extensions/extension_special_storage_policy.h" 8 #include "chrome/browser/extensions/extension_special_storage_policy.h"
9 #include "chrome/common/content_settings.h" 9 #include "chrome/common/content_settings.h"
10 #include "chrome/common/content_settings_types.h" 10 #include "chrome/common/content_settings_types.h"
11 #include "chrome/common/extensions/extension.h" 11 #include "chrome/common/extensions/extension.h"
12 #include "chrome/common/extensions/extension_manifest_constants.h" 12 #include "chrome/common/extensions/extension_manifest_constants.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 "testing/gtest/include/gtest/gtest.h" 15 #include "testing/gtest/include/gtest/gtest.h"
16 16
17 using content::BrowserThread; 17 using content::BrowserThread;
18 using extensions::Extension; 18 using extensions::Extension;
19 19
20 namespace keys = extension_manifest_keys; 20 namespace keys = extension_manifest_keys;
21 21
22 class ExtensionSpecialStoragePolicyTest : public testing::Test { 22 class ExtensionSpecialStoragePolicyTest : public testing::Test {
23 protected: 23 protected:
24 scoped_refptr<Extension> CreateProtectedApp() { 24 scoped_refptr<Extension> CreateProtectedApp() {
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after
244 CONTENT_SETTING_SESSION_ONLY); 244 CONTENT_SETTING_SESSION_ONLY);
245 245
246 EXPECT_TRUE(policy->HasSessionOnlyOrigins()); 246 EXPECT_TRUE(policy->HasSessionOnlyOrigins());
247 247
248 // Clearing an origin-specific rule. 248 // Clearing an origin-specific rule.
249 cookie_settings->ResetCookieSetting(pattern, 249 cookie_settings->ResetCookieSetting(pattern,
250 ContentSettingsPattern::Wildcard()); 250 ContentSettingsPattern::Wildcard());
251 251
252 EXPECT_FALSE(policy->HasSessionOnlyOrigins()); 252 EXPECT_FALSE(policy->HasSessionOnlyOrigins());
253 } 253 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698