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

Side by Side Diff: content/browser/dom_storage/dom_storage_browsertest.cc

Issue 214823006: Move ContentBrowserTest class to content/public, since it's used by components_browsertests for bro… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: remove other files Created 6 years, 8 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/path_service.h" 5 #include "base/path_service.h"
6 #include "content/browser/web_contents/web_contents_impl.h" 6 #include "content/browser/web_contents/web_contents_impl.h"
7 #include "content/common/dom_storage/dom_storage_types.h" 7 #include "content/common/dom_storage/dom_storage_types.h"
8 #include "content/public/common/content_paths.h" 8 #include "content/public/common/content_paths.h"
9 #include "content/public/test/browser_test_utils.h" 9 #include "content/public/test/browser_test_utils.h"
10 #include "content/public/test/content_browser_test.h"
11 #include "content/public/test/content_browser_test_utils.h"
10 #include "content/shell/browser/shell.h" 12 #include "content/shell/browser/shell.h"
11 #include "content/test/content_browser_test.h"
12 #include "content/test/content_browser_test_utils.h"
13 #include "net/base/net_util.h" 13 #include "net/base/net_util.h"
14 14
15 namespace content { 15 namespace content {
16 16
17 // This browser test is aimed towards exercising the DOMStorage system 17 // This browser test is aimed towards exercising the DOMStorage system
18 // from end-to-end. 18 // from end-to-end.
19 class DOMStorageBrowserTest : public ContentBrowserTest { 19 class DOMStorageBrowserTest : public ContentBrowserTest {
20 public: 20 public:
21 DOMStorageBrowserTest() {} 21 DOMStorageBrowserTest() {}
22 22
(...skipping 20 matching lines...) Expand all
43 43
44 IN_PROC_BROWSER_TEST_F(DOMStorageBrowserTest, SanityCheck) { 44 IN_PROC_BROWSER_TEST_F(DOMStorageBrowserTest, SanityCheck) {
45 SimpleTest(GetTestUrl("dom_storage", "sanity_check.html"), kNotIncognito); 45 SimpleTest(GetTestUrl("dom_storage", "sanity_check.html"), kNotIncognito);
46 } 46 }
47 47
48 IN_PROC_BROWSER_TEST_F(DOMStorageBrowserTest, SanityCheckIncognito) { 48 IN_PROC_BROWSER_TEST_F(DOMStorageBrowserTest, SanityCheckIncognito) {
49 SimpleTest(GetTestUrl("dom_storage", "sanity_check.html"), kIncognito); 49 SimpleTest(GetTestUrl("dom_storage", "sanity_check.html"), kIncognito);
50 } 50 }
51 51
52 } // namespace content 52 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/devtools/renderer_overrides_handler_browsertest.cc ('k') | content/browser/download/download_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698