summaryrefslogtreecommitdiffstats
path: root/chrome/common/env_vars.h
blob: 34e1e171efbd62f76e4f08e70666005e1b598a2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Copyright (c) 2012 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.

// Defines all the environment variables used by Chrome.

#ifndef CHROME_COMMON_ENV_VARS_H__
#define CHROME_COMMON_ENV_VARS_H__

namespace env_vars {

extern const char kHeadless[];
extern const char kLogFileName[];
extern const char kSessionLogDir[];
extern const char kShowRestart[];
extern const char kRestartInfo[];
extern const char kRtlLocale[];
extern const char kLtrLocale[];
extern const char kStartupTestsNumCycles[];

// Google Update named environment variable that implies kSystemLevel.
// TODO(erikwright): Put this in chrome/installer/util/util_constants.h when
// http://crbug.com/174953 is fixed and widely deployed.
extern const char kGoogleUpdateIsMachineEnvVar[];

}  // namespace env_vars

#endif  // CHROME_COMMON_ENV_VARS_H__