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 // Defines all the environment variables used by Chrome. | 5 // Defines all the environment variables used by Chrome. |
6 | 6 |
7 #ifndef CHROME_COMMON_ENV_VARS_H__ | 7 #ifndef CHROME_COMMON_ENV_VARS_H__ |
8 #define CHROME_COMMON_ENV_VARS_H__ | 8 #define CHROME_COMMON_ENV_VARS_H__ |
9 | 9 |
10 namespace env_vars { | 10 namespace env_vars { |
11 | 11 |
12 extern const char kEnableBreakpad[]; | |
13 extern const char kHeadless[]; | 12 extern const char kHeadless[]; |
14 extern const char kLogFileName[]; | 13 extern const char kLogFileName[]; |
15 extern const char kSessionLogDir[]; | 14 extern const char kSessionLogDir[]; |
16 extern const char kShowRestart[]; | 15 extern const char kShowRestart[]; |
17 extern const char kRestartInfo[]; | 16 extern const char kRestartInfo[]; |
18 extern const char kRtlLocale[]; | 17 extern const char kRtlLocale[]; |
19 extern const char kLtrLocale[]; | 18 extern const char kLtrLocale[]; |
20 extern const char kStartupTestsNumCycles[]; | 19 extern const char kStartupTestsNumCycles[]; |
21 | 20 |
22 } // namespace env_vars | 21 } // namespace env_vars |
23 | 22 |
24 #endif // CHROME_COMMON_ENV_VARS_H__ | 23 #endif // CHROME_COMMON_ENV_VARS_H__ |
OLD | NEW |