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

Side by Side Diff: chrome/test/perf/feature_startup_test.cc

Issue 10698009: Make profile history easily filterable. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase to tot Created 8 years, 3 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 | « chrome/test/data/profiles/typical_history/README.txt ('k') | chrome/test/perf/startup_test.cc » ('j') | 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) 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
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
OLDNEW
« no previous file with comments | « chrome/test/data/profiles/typical_history/README.txt ('k') | chrome/test/perf/startup_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698