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: #include "chrome/common/env_vars.h" michael@0: michael@0: namespace env_vars { michael@0: michael@0: // We call running in unattended mode (for automated testing) "headless". michael@0: // This mode can be enabled using this variable or by the kNoErrorDialogs michael@0: // switch. michael@0: const wchar_t kHeadless[] = L"CHROME_HEADLESS"; michael@0: michael@0: // The name of the log file. michael@0: const wchar_t kLogFileName[] = L"CHROME_LOG_FILE"; michael@0: michael@0: // CHROME_CRASHED exists if a previous instance of chrome has crashed. This michael@0: // triggers the 'restart chrome' dialog. CHROME_RESTART contains the strings michael@0: // that are needed to show the dialog. michael@0: const wchar_t kShowRestart[] = L"CHROME_CRASHED"; michael@0: const wchar_t kRestartInfo[] = L"CHROME_RESTART"; michael@0: michael@0: // The strings RIGHT_TO_LEFT and LEFT_TO_RIGHT indicate the locale direction. michael@0: // For example, for Hebrew and Arabic locales, we use RIGHT_TO_LEFT so that the michael@0: // dialog is displayed using the right orientation. michael@0: const wchar_t kRtlLocale[] = L"RIGHT_TO_LEFT"; michael@0: const wchar_t kLtrLocale[] = L"LEFT_TO_RIGHT"; michael@0: michael@0: // If the out-of-process breakpad could not be installed, we set this variable michael@0: // according to the process. michael@0: const wchar_t kNoOOBreakpad[] = L"NO_OO_BREAKPAD"; michael@0: michael@0: } // namespace env_vars