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/bind.h" | 5 #include "base/bind.h" |
6 #include "base/cancelable_callback.h" | 6 #include "base/cancelable_callback.h" |
7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
9 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
10 #include "base/path_service.h" | 10 #include "base/path_service.h" |
(...skipping 755 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
766 | 766 |
767 // Tests that pressing 'Pause' will pause script execution if the script | 767 // Tests that pressing 'Pause' will pause script execution if the script |
768 // is already running. | 768 // is already running. |
769 // Disabled because it fails on all trunk official build bots. | 769 // Disabled because it fails on all trunk official build bots. |
770 // http://crbug.com/467072 | 770 // http://crbug.com/467072 |
771 // Previous condition: | 771 // Previous condition: |
772 // defined(OS_LINUX) && !defined(OS_CHROMEOS) && defined(ARCH_CPU_ARM_FAMILY) | 772 // defined(OS_LINUX) && !defined(OS_CHROMEOS) && defined(ARCH_CPU_ARM_FAMILY) |
773 // Timing out on linux ARM bot: https://crbug/238453 | 773 // Timing out on linux ARM bot: https://crbug/238453 |
774 #define MAYBE_TestPauseWhenScriptIsRunning DISABLED_TestPauseWhenScriptIsRunning | 774 #define MAYBE_TestPauseWhenScriptIsRunning DISABLED_TestPauseWhenScriptIsRunning |
775 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, | 775 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, |
776 MAYBE_TestPauseWhenScriptIsRunning) { | 776 DISABLED_TestPauseWhenScriptIsRunning) { |
777 RunTest("testPauseWhenScriptIsRunning", kPauseWhenScriptIsRunning); | 777 RunTest("testPauseWhenScriptIsRunning", kPauseWhenScriptIsRunning); |
778 } | 778 } |
779 | 779 |
780 // Tests network timing. | 780 // Tests network timing. |
781 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, TestNetworkTiming) { | 781 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, TestNetworkTiming) { |
782 RunTest("testNetworkTiming", kSlowTestPage); | 782 RunTest("testNetworkTiming", kSlowTestPage); |
783 } | 783 } |
784 | 784 |
785 // Tests network size. | 785 // Tests network size. |
786 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, TestNetworkSize) { | 786 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, TestNetworkSize) { |
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
961 browser()->profile()->GetPrefs()->SetBoolean(prefs::kDevToolsDisabled, true); | 961 browser()->profile()->GetPrefs()->SetBoolean(prefs::kDevToolsDisabled, true); |
962 ui_test_utils::NavigateToURL(browser(), GURL("about:blank")); | 962 ui_test_utils::NavigateToURL(browser(), GURL("about:blank")); |
963 content::WebContents* web_contents = | 963 content::WebContents* web_contents = |
964 browser()->tab_strip_model()->GetWebContentsAt(0); | 964 browser()->tab_strip_model()->GetWebContentsAt(0); |
965 scoped_refptr<content::DevToolsAgentHost> agent( | 965 scoped_refptr<content::DevToolsAgentHost> agent( |
966 content::DevToolsAgentHost::GetOrCreateFor(web_contents)); | 966 content::DevToolsAgentHost::GetOrCreateFor(web_contents)); |
967 DevToolsWindow::OpenDevToolsWindow(web_contents); | 967 DevToolsWindow::OpenDevToolsWindow(web_contents); |
968 DevToolsWindow* window = DevToolsWindow::FindDevToolsWindow(agent.get()); | 968 DevToolsWindow* window = DevToolsWindow::FindDevToolsWindow(agent.get()); |
969 ASSERT_FALSE(window); | 969 ASSERT_FALSE(window); |
970 } | 970 } |
OLD | NEW |