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

Side by Side Diff: content/browser/in_process_webkit/indexed_db_layout_browsertest.cc

Issue 10820007: Move all the layout tests that ran under browser_tests to run under content_browsertests. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix mac Created 8 years, 5 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/file_path.h"
6 #include "content/test/layout_browsertest.h" 5 #include "content/test/layout_browsertest.h"
7 6
8 class IndexedDBLayoutTest : public InProcessBrowserLayoutTest { 7 class IndexedDBLayoutTest : public InProcessBrowserLayoutTest {
9 public: 8 public:
10 IndexedDBLayoutTest() : InProcessBrowserLayoutTest( 9 IndexedDBLayoutTest() : InProcessBrowserLayoutTest(
11 FilePath(), FilePath().AppendASCII("storage").AppendASCII("indexeddb")) { 10 FilePath(), FilePath().AppendASCII("storage").AppendASCII("indexeddb")) {
12 } 11 }
13 12
14 virtual void SetUpInProcessBrowserTestFixture() OVERRIDE { 13 virtual void SetUpInProcessBrowserTestFixture() OVERRIDE {
15 InProcessBrowserLayoutTest::SetUpInProcessBrowserTestFixture(); 14 InProcessBrowserLayoutTest::SetUpInProcessBrowserTestFixture();
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 } 111 }
113 112
114 IN_PROC_BROWSER_TEST_F(IndexedDBLayoutTest, TransactionTests) { 113 IN_PROC_BROWSER_TEST_F(IndexedDBLayoutTest, TransactionTests) {
115 RunLayoutTests(kTransactionTests); 114 RunLayoutTests(kTransactionTests);
116 } 115 }
117 116
118 // Frequent flaky timeouts. http://crbug.com/123685 117 // Frequent flaky timeouts. http://crbug.com/123685
119 IN_PROC_BROWSER_TEST_F(IndexedDBLayoutTest, DISABLED_RegressionTests) { 118 IN_PROC_BROWSER_TEST_F(IndexedDBLayoutTest, DISABLED_RegressionTests) {
120 RunLayoutTests(kRegressionTests); 119 RunLayoutTests(kRegressionTests);
121 } 120 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698