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
|
|
|
|
2012-06-25 19:52:54 +02:00
|
|
|
// 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
|
|
|
|
2012-09-06 19:42:16 +02:00
|
|
|
// Path to resources directory.
|
|
|
|
const char kResourcesDirPath[] = "resources-dir-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
|
|
|
|
2012-11-02 19:16:28 +01:00
|
|
|
// Stack size for uncaught exceptions.
|
|
|
|
const char kUncaughtExceptionStackSize[] = "uncaught-exception-stack-size";
|
|
|
|
|
2012-10-29 22:46:02 +01:00
|
|
|
// Context safety implementation type.
|
|
|
|
const char kContextSafetyImplementation[] = "context-safety-implementation";
|
|
|
|
|
2012-04-03 03:34:16 +02:00
|
|
|
} // namespace switches
|