OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 "base/environment.h" | 6 #include "base/environment.h" |
7 #include "base/file_path.h" | 7 #include "base/file_path.h" |
8 #include "base/file_util.h" | 8 #include "base/file_util.h" |
9 #include "base/path_service.h" | 9 #include "base/path_service.h" |
10 #include "base/scoped_ptr.h" | 10 #include "base/scoped_ptr.h" |
11 #include "base/threading/platform_thread.h" | 11 #include "base/threading/platform_thread.h" |
12 #include "base/time.h" | 12 #include "base/time.h" |
13 #include "base/utf_string_conversions.h" | 13 #include "base/utf_string_conversions.h" |
14 #include "chrome/app/chrome_command_ids.h" | 14 #include "chrome/app/chrome_command_ids.h" |
15 #include "chrome/common/chrome_paths.h" | 15 #include "chrome/common/chrome_paths.h" |
16 #include "chrome/common/chrome_switches.h" | 16 #include "chrome/common/chrome_switches.h" |
17 #include "chrome/common/env_vars.h" | 17 #include "chrome/common/env_vars.h" |
18 #include "chrome/common/pref_names.h" | |
19 #include "chrome/test/automation/tab_proxy.h" | 18 #include "chrome/test/automation/tab_proxy.h" |
20 #include "chrome/test/automation/browser_proxy.h" | 19 #include "chrome/test/automation/browser_proxy.h" |
21 #include "chrome/test/ui/ui_perf_test.h" | 20 #include "chrome/test/ui/ui_perf_test.h" |
22 #include "googleurl/src/gurl.h" | 21 #include "googleurl/src/gurl.h" |
23 #include "net/base/net_util.h" | 22 #include "net/base/net_util.h" |
24 | 23 |
25 using base::TimeDelta; | 24 using base::TimeDelta; |
26 | 25 |
27 namespace { | 26 namespace { |
28 | 27 |
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
186 TEST_F(TabSwitchingUITest, TabSwitch) { | 185 TEST_F(TabSwitchingUITest, TabSwitch) { |
187 RunTabSwitchingUITest("t", true); | 186 RunTabSwitchingUITest("t", true); |
188 } | 187 } |
189 | 188 |
190 TEST_F(TabSwitchingUITest, TabSwitchRef) { | 189 TEST_F(TabSwitchingUITest, TabSwitchRef) { |
191 UseReferenceBuild(); | 190 UseReferenceBuild(); |
192 RunTabSwitchingUITest("t_ref", true); | 191 RunTabSwitchingUITest("t_ref", true); |
193 } | 192 } |
194 | 193 |
195 } // namespace | 194 } // namespace |
OLD | NEW |