1// Copyright (c) 2010 The Chromium Authors. All rights reserved. 2// Use of this source code is governed by a BSD-style license that can be 3// found in the LICENSE file. 4 5// Defines all the environment variables used by Chrome. 6 7#ifndef CHROME_COMMON_ENV_VARS_H__ 8#define CHROME_COMMON_ENV_VARS_H__ 9#pragma once 10 11namespace env_vars { 12 13extern const char kHeadless[]; 14extern const char kLogFileName[]; 15extern const char kSessionLogDir[]; 16extern const char kEtwLogging[]; 17extern const char kShowRestart[]; 18extern const char kRestartInfo[]; 19extern const char kRtlLocale[]; 20extern const char kLtrLocale[]; 21extern const char kNoOOBreakpad[]; 22extern const char kStartupTestsNumCycles[]; 23 24} // namespace env_vars 25 26#endif // CHROME_COMMON_ENV_VARS_H__ 27