| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
| 10 #include "base/path_service.h" | 10 #include "base/path_service.h" |
| (...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 186 TEST_F(TabSwitchingUITest, TabSwitch) { | 186 TEST_F(TabSwitchingUITest, TabSwitch) { |
| 187 RunTabSwitchingUITest("t", true); | 187 RunTabSwitchingUITest("t", true); |
| 188 } | 188 } |
| 189 | 189 |
| 190 TEST_F(TabSwitchingUITest, TabSwitchRef) { | 190 TEST_F(TabSwitchingUITest, TabSwitchRef) { |
| 191 UseReferenceBuild(); | 191 UseReferenceBuild(); |
| 192 RunTabSwitchingUITest("t_ref", true); | 192 RunTabSwitchingUITest("t_ref", true); |
| 193 } | 193 } |
| 194 | 194 |
| 195 } // namespace | 195 } // namespace |
| OLD | NEW |