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

Side by Side Diff: chrome/browser/debugger/devtools_sanity_unittest.cc

Issue 151140: DevTools: fix and reenable debugger test (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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/command_line.h" 5 #include "base/command_line.h"
6 #include "chrome/browser/browser.h" 6 #include "chrome/browser/browser.h"
7 #include "chrome/browser/debugger/devtools_client_host.h" 7 #include "chrome/browser/debugger/devtools_client_host.h"
8 #include "chrome/browser/debugger/devtools_manager.h" 8 #include "chrome/browser/debugger/devtools_manager.h"
9 #include "chrome/browser/debugger/devtools_window.h" 9 #include "chrome/browser/debugger/devtools_window.h"
10 #include "chrome/browser/renderer_host/render_view_host.h" 10 #include "chrome/browser/renderer_host/render_view_host.h"
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, TestElementsTreeRoot) { 104 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, TestElementsTreeRoot) {
105 RunTest("testElementsTreeRoot", kSimplePage); 105 RunTest("testElementsTreeRoot", kSimplePage);
106 } 106 }
107 107
108 // Tests main resource load. 108 // Tests main resource load.
109 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, TestMainResource) { 109 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, TestMainResource) {
110 RunTest("testMainResource", kSimplePage); 110 RunTest("testMainResource", kSimplePage);
111 } 111 }
112 112
113 // Tests resources panel enabling. 113 // Tests resources panel enabling.
114 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, DISABLED_TestEnableResourcesTab) { 114 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, TestEnableResourcesTab) {
115 RunTest("testEnableResourcesTab", kSimplePage); 115 RunTest("testEnableResourcesTab", kSimplePage);
116 } 116 }
117 117
118 // Tests profiler panel. 118 // Tests profiler panel.
119 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, TestProfilerTab) { 119 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, TestProfilerTab) {
120 RunTest("testProfilerTab", kJsPage); 120 RunTest("testProfilerTab", kJsPage);
121 } 121 }
122 122
123 // Tests scripta panel enabling. 123 // Tests scripts panel showing.
124 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, DISABLED_TestEnableScriptsTab) { 124 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, TestShowScriptsTab) {
125 RunTest("testEnableScriptsTab", kDebuggerTestPage); 125 RunTest("testShowScriptsTab", kDebuggerTestPage);
126 } 126 }
127 127
128 } // namespace 128 } // namespace
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698