diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-04-06 21:05:25 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-04-06 21:05:25 +0000 |
commit | 2aa336ea9a0edfa52a58a4856655370ddca794f3 (patch) | |
tree | 46223555bc23d93d72234181976499cd42b2708c /chrome/common/env_vars.cc | |
parent | a8e91124532061d21f0114605530c605582144e8 (diff) | |
download | chromium_src-2aa336ea9a0edfa52a58a4856655370ddca794f3.zip chromium_src-2aa336ea9a0edfa52a58a4856655370ddca794f3.tar.gz chromium_src-2aa336ea9a0edfa52a58a4856655370ddca794f3.tar.bz2 |
Add some shutdown perf tests. We measure shutdown for the combination of
shutdown method: {Close all windows, clicking exit, terminating process}
and number of tabs open: {just about:blank, twenty tabs}
BUG=23118
TEST=This CL adds a test.
Review URL: http://codereview.chromium.org/1594008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@43758 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/env_vars.cc')
-rw-r--r-- | chrome/common/env_vars.cc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/chrome/common/env_vars.cc b/chrome/common/env_vars.cc index 9a0457f..dc2648c 100644 --- a/chrome/common/env_vars.cc +++ b/chrome/common/env_vars.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. +// Copyright (c) 2010 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -34,4 +34,7 @@ const char kLtrLocale[] = "LEFT_TO_RIGHT"; // according to the process. const char kNoOOBreakpad[] = "NO_OO_BREAKPAD"; +// Number of times to run a given startup_tests unit test. +const char kStartupTestsNumCycles[] = "STARTUP_TESTS_NUMCYCLES"; + } // namespace env_vars |