1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/ipc/chromium/src/chrome/common/env_vars.h Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,26 @@ 1.4 +// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1.5 +// Use of this source code is governed by a BSD-style license that can be 1.6 +// found in the LICENSE file. 1.7 + 1.8 +// Defines all the environment variables used by Chrome. 1.9 + 1.10 +#ifndef CHROME_COMMON_ENV_VARS_H__ 1.11 +#define CHROME_COMMON_ENV_VARS_H__ 1.12 + 1.13 +#if defined(COMPILER_MSVC) 1.14 +#include <string.h> 1.15 +#endif 1.16 + 1.17 +namespace env_vars { 1.18 + 1.19 +extern const wchar_t kHeadless[]; 1.20 +extern const wchar_t kLogFileName[]; 1.21 +extern const wchar_t kShowRestart[]; 1.22 +extern const wchar_t kRestartInfo[]; 1.23 +extern const wchar_t kRtlLocale[]; 1.24 +extern const wchar_t kLtrLocale[]; 1.25 +extern const wchar_t kNoOOBreakpad[]; 1.26 + 1.27 +} // namespace env_vars 1.28 + 1.29 +#endif // CHROME_COMMON_ENV_VARS_H__