summaryrefslogtreecommitdiffstats
path: root/base/test/test_switches.h
diff options
context:
space:
mode:
authorsergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-05 19:03:05 +0000
committersergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-05 19:03:05 +0000
commitcbb9f50f408e81cc271df08fa969ef3f8d06bca1 (patch)
treec011aa7829510d1cfc39c8ad49ee66e412bfdfa7 /base/test/test_switches.h
parent6b1b77e9f51dcf24fff29720d6b4063983a2d5b8 (diff)
downloadchromium_src-cbb9f50f408e81cc271df08fa969ef3f8d06bca1.zip
chromium_src-cbb9f50f408e81cc271df08fa969ef3f8d06bca1.tar.gz
chromium_src-cbb9f50f408e81cc271df08fa969ef3f8d06bca1.tar.bz2
Move TestTimeouts from chrome/test to base/test.
BUG=None TEST=unittests Review URL: http://codereview.chromium.org/3544008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61540 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/test/test_switches.h')
-rw-r--r--base/test/test_switches.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/base/test/test_switches.h b/base/test/test_switches.h
new file mode 100644
index 0000000..2194596
--- /dev/null
+++ b/base/test/test_switches.h
@@ -0,0 +1,22 @@
+// 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.
+
+#ifndef BASE_TEST_TEST_SWITCHES_H_
+#define BASE_TEST_TEST_SWITCHES_H_
+
+namespace switches {
+
+// All switches in alphabetical order. The switches should be documented
+// alongside the definition of their values in the .cc file.
+extern const char kLiveOperationTimeout[];
+extern const char kTestLargeTimeout[];
+extern const char kUiTestActionTimeout[];
+extern const char kUiTestActionMaxTimeout[];
+extern const char kUiTestCommandExecutionTimeout[];
+extern const char kUiTestTerminateTimeout[];
+extern const char kUiTestTimeout[];
+
+} // namespace switches
+
+#endif // BASE_TEST_TEST_SWITCHES_H_