2013-02-07 20:59:40 +01:00
|
|
|
// Copyright (c) 2013 The Chromium Embedded Framework Authors. All rights
|
2012-04-03 03:34:16 +02:00
|
|
|
// reserved. Use of this source code is governed by a BSD-style license that
|
|
|
|
// can be found in the LICENSE file.
|
|
|
|
|
|
|
|
// Defines all of the command line switches used by cefclient.
|
|
|
|
|
2015-01-31 01:55:56 +01:00
|
|
|
#ifndef CEF_TESTS_CEFCLIENT_CEFCLIENT_COMMON_SWITCHES_H_
|
|
|
|
#define CEF_TESTS_CEFCLIENT_CEFCLIENT_COMMON_SWITCHES_H_
|
2012-04-03 03:34:16 +02:00
|
|
|
#pragma once
|
|
|
|
|
2015-01-23 20:09:34 +01:00
|
|
|
namespace client {
|
|
|
|
namespace switches {
|
2012-04-03 03:34:16 +02:00
|
|
|
|
|
|
|
extern const char kMultiThreadedMessageLoop[];
|
|
|
|
extern const char kCachePath[];
|
2013-02-07 20:59:40 +01:00
|
|
|
extern const char kUrl[];
|
2014-07-01 00:30:29 +02:00
|
|
|
extern const char kOffScreenRenderingEnabled[];
|
|
|
|
extern const char kOffScreenFrameRate[];
|
|
|
|
extern const char kTransparentPaintingEnabled[];
|
2014-12-02 12:23:57 +01:00
|
|
|
extern const char kShowUpdateRect[];
|
2013-04-05 19:05:37 +02:00
|
|
|
extern const char kMouseCursorChangeDisabled[];
|
2015-02-14 00:17:08 +01:00
|
|
|
extern const char kRequestContextPerBrowser[];
|
2015-04-09 16:59:34 +02:00
|
|
|
extern const char kBackgroundColor[];
|
2012-04-03 03:34:16 +02:00
|
|
|
|
2015-01-23 20:09:34 +01:00
|
|
|
} // namespace switches
|
|
|
|
} // namespace client
|
2012-04-03 03:34:16 +02:00
|
|
|
|
2015-01-31 01:55:56 +01:00
|
|
|
#endif // CEF_TESTS_CEFCLIENT_CEFCLIENT_COMMON_SWITCHES_H_
|