michael@0: // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. michael@0: // Use of this source code is governed by a BSD-style license that can be michael@0: // found in the LICENSE file. michael@0: michael@0: // Defines all the environment variables used by Chrome. michael@0: michael@0: #ifndef CHROME_COMMON_ENV_VARS_H__ michael@0: #define CHROME_COMMON_ENV_VARS_H__ michael@0: michael@0: #if defined(COMPILER_MSVC) michael@0: #include michael@0: #endif michael@0: michael@0: namespace env_vars { michael@0: michael@0: extern const wchar_t kHeadless[]; michael@0: extern const wchar_t kLogFileName[]; michael@0: extern const wchar_t kShowRestart[]; michael@0: extern const wchar_t kRestartInfo[]; michael@0: extern const wchar_t kRtlLocale[]; michael@0: extern const wchar_t kLtrLocale[]; michael@0: extern const wchar_t kNoOOBreakpad[]; michael@0: michael@0: } // namespace env_vars michael@0: michael@0: #endif // CHROME_COMMON_ENV_VARS_H__