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.
|
|
|
|
|
2016-11-18 00:52:42 +01:00
|
|
|
#ifndef CEF_TESTS_SHARED_SHARED_COMMON_SWITCHES_H_
|
|
|
|
#define CEF_TESTS_SHARED_SHARED_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[];
|
2016-05-04 20:00:03 +02:00
|
|
|
extern const char kExternalMessagePump[];
|
2012-04-03 03:34:16 +02:00
|
|
|
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[];
|
2018-09-26 13:25:58 +02:00
|
|
|
extern const char kSharedTextureEnabled[];
|
|
|
|
extern const char kExternalBeginFrameEnabled[];
|
2013-04-05 19:05:37 +02:00
|
|
|
extern const char kMouseCursorChangeDisabled[];
|
2020-06-13 02:54:08 +02:00
|
|
|
extern const char kOffline[];
|
2015-02-14 00:17:08 +01:00
|
|
|
extern const char kRequestContextPerBrowser[];
|
2016-01-12 01:19:51 +01:00
|
|
|
extern const char kRequestContextSharedCache[];
|
2015-04-09 16:59:34 +02:00
|
|
|
extern const char kBackgroundColor[];
|
2015-08-18 00:14:59 +02:00
|
|
|
extern const char kEnableGPU[];
|
2015-12-05 03:58:56 +01:00
|
|
|
extern const char kFilterURL[];
|
2016-01-19 21:09:01 +01:00
|
|
|
extern const char kUseViews[];
|
2022-04-08 22:48:56 +02:00
|
|
|
extern const char kUseNative[];
|
2016-01-19 21:09:01 +01:00
|
|
|
extern const char kHideFrame[];
|
|
|
|
extern const char kHideControls[];
|
2021-08-28 03:55:15 +02:00
|
|
|
extern const char kHideOverlays[];
|
2018-02-28 05:47:36 +01:00
|
|
|
extern const char kAlwaysOnTop[];
|
2017-02-22 19:05:27 +01:00
|
|
|
extern const char kHideTopMenu[];
|
2016-10-27 19:57:12 +02:00
|
|
|
extern const char kSslClientCertificate[];
|
2017-07-11 21:02:44 +02:00
|
|
|
extern const char kCRLSetsPath[];
|
2017-08-04 00:55:19 +02:00
|
|
|
extern const char kLoadExtension[];
|
2019-02-07 22:36:31 +01:00
|
|
|
extern const char kNoActivate[];
|
2020-09-25 03:40:47 +02:00
|
|
|
extern const char kEnableChromeRuntime[];
|
2021-04-11 22:10:11 +02:00
|
|
|
extern const char kShowChromeToolbar[];
|
2021-09-07 16:04:55 +02:00
|
|
|
extern const char kInitialShowState[];
|
2022-03-21 22:22:07 +01:00
|
|
|
extern const char kHideChromeStatusBubble[];
|
2022-04-11 22:54:33 +02:00
|
|
|
extern const char kUseDefaultPopup[];
|
2022-04-15 21:55:23 +02:00
|
|
|
extern const char kUseClientDialogs[];
|
2022-07-31 01:53:48 +02:00
|
|
|
extern const char kUseTestHttpServer[];
|
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
|
|
|
|
2016-11-18 00:52:42 +01:00
|
|
|
#endif // CEF_TESTS_SHARED_SHARED_COMMON_SWITCHES_H_
|