2012-04-03 03:34:16 +02:00
|
|
|
// Copyright (c) 2012 The Chromium Embedded Framework Authors. All rights
|
|
|
|
// reserved. Use of this source code is governed by a BSD-style license that can
|
|
|
|
// be found in the LICENSE file.
|
|
|
|
|
|
|
|
#include "libcef/common/cef_switches.h"
|
|
|
|
|
|
|
|
namespace switches {
|
|
|
|
|
|
|
|
// Product version string.
|
2012-06-25 19:52:54 +02:00
|
|
|
const char kProductVersion[] = "product-version";
|
2012-04-03 03:34:16 +02:00
|
|
|
|
|
|
|
// Locale string.
|
2012-06-25 19:52:54 +02:00
|
|
|
const char kLocale[] = "locale";
|
|
|
|
|
|
|
|
// Log file path.
|
|
|
|
const char kLogFile[] = "log-file";
|
|
|
|
|
|
|
|
// Severity of messages to log.
|
|
|
|
const char kLogSeverity[] = "log-severity";
|
|
|
|
const char kLogSeverity_Verbose[] = "verbose";
|
|
|
|
const char kLogSeverity_Info[] = "info";
|
|
|
|
const char kLogSeverity_Warning[] = "warning";
|
|
|
|
const char kLogSeverity_Error[] = "error";
|
|
|
|
const char kLogSeverity_ErrorReport[] = "error-report";
|
|
|
|
const char kLogSeverity_Disable[] = "disable";
|
2012-04-03 03:34:16 +02:00
|
|
|
|
|
|
|
// Path to cef.pak file.
|
2012-06-25 19:52:54 +02:00
|
|
|
const char kPackFilePath[] = "pack-file-path";
|
2012-04-03 03:34:16 +02:00
|
|
|
|
|
|
|
// Path to locales directory.
|
2012-06-25 19:52:54 +02:00
|
|
|
const char kLocalesDirPath[] = "locales-dir-path";
|
2012-04-03 03:34:16 +02:00
|
|
|
|
|
|
|
// Path to locales directory.
|
2012-06-25 19:52:54 +02:00
|
|
|
const char kPackLoadingDisabled[] = "pack-loading-disabled";
|
2012-04-03 03:34:16 +02:00
|
|
|
|
|
|
|
} // namespace switches
|