| 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/file_util.h" | 5 #include "base/file_util.h" |
| 6 #include "base/path_service.h" | 6 #include "base/path_service.h" |
| 7 #include "base/perftimer.h" | 7 #include "base/perftimer.h" |
| 8 #include "base/stringprintf.h" | 8 #include "base/stringprintf.h" |
| 9 #include "base/time.h" | 9 #include "base/time.h" |
| 10 #include "chrome/app/chrome_command_ids.h" | 10 #include "chrome/app/chrome_command_ids.h" |
| (...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 189 RunStartupTest("tab_complex_theme_cold", false /* cold */, | 189 RunStartupTest("tab_complex_theme_cold", false /* cold */, |
| 190 false /* not important */, | 190 false /* not important */, |
| 191 UITestBase::COMPLEX_THEME); | 191 UITestBase::COMPLEX_THEME); |
| 192 } | 192 } |
| 193 | 193 |
| 194 // FLAKY: http://crbug.com/69940 | 194 // FLAKY: http://crbug.com/69940 |
| 195 TEST_F(NewTabUIStartupTest, DISABLED_NewTabTimingTestsCold) { | 195 TEST_F(NewTabUIStartupTest, DISABLED_NewTabTimingTestsCold) { |
| 196 RunNewTabTimingTest(); | 196 RunNewTabTimingTest(); |
| 197 } | 197 } |
| 198 | 198 |
| 199 #if defined(TOOLKIT_GTK) | |
| 200 TEST_F(NewTabUIStartupTest, GtkThemeCold) { | |
| 201 RunStartupTest("tab_gtk_theme_cold", false /* cold */, | |
| 202 false /* not important */, | |
| 203 UITestBase::NATIVE_THEME); | |
| 204 } | |
| 205 | |
| 206 TEST_F(NewTabUIStartupTest, NativeFrameCold) { | |
| 207 RunStartupTest("tab_custom_frame_cold", false /* cold */, | |
| 208 false /* not important */, | |
| 209 UITestBase::CUSTOM_FRAME); | |
| 210 } | |
| 211 | |
| 212 TEST_F(NewTabUIStartupTest, NativeFrameGtkThemeCold) { | |
| 213 RunStartupTest("tab_custom_frame_gtk_theme_cold", false /* cold */, | |
| 214 false /* not important */, | |
| 215 UITestBase::CUSTOM_FRAME_NATIVE_THEME); | |
| 216 } | |
| 217 #endif | |
| 218 | |
| 219 } // namespace | 199 } // namespace |
| OLD | NEW |