cef/cef3/libcef/common/cef_switches.cc
Marshall Greenblatt c5bb1d019a Create 1271 release branch for CEF3.
git-svn-id: https://chromiumembedded.googlecode.com/svn/branches/1271@841 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
2012-10-04 15:04:03 +00:00

37 lines
1.2 KiB
C++

// 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.
const char kProductVersion[] = "product-version";
// Locale string.
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";
// Path to resources directory.
const char kResourcesDirPath[] = "resources-dir-path";
// Path to locales directory.
const char kLocalesDirPath[] = "locales-dir-path";
// Path to locales directory.
const char kPackLoadingDisabled[] = "pack-loading-disabled";
} // namespace switches