2013-02-07 19:59:40 +00:00
|
|
|
// Copyright (c) 2013 The Chromium Embedded Framework Authors. All rights
|
2012-04-03 01:34:16 +00: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 00:55:56 +00:00
|
|
|
#ifndef CEF_TESTS_CEFCLIENT_CEFCLIENT_COMMON_SWITCHES_H_
|
|
|
|
#define CEF_TESTS_CEFCLIENT_CEFCLIENT_COMMON_SWITCHES_H_
|
2012-04-03 01:34:16 +00:00
|
|
|
#pragma once
|
|
|
|
|
2015-01-23 19:09:34 +00:00
|
|
|
namespace client {
|
|
|
|
namespace switches {
|
2012-04-03 01:34:16 +00:00
|
|
|
|
|
|
|
extern const char kMultiThreadedMessageLoop[];
|
2016-05-04 14:00:03 -04:00
|
|
|
extern const char kExternalMessagePump[];
|
2012-04-03 01:34:16 +00:00
|
|
|
extern const char kCachePath[];
|
2013-02-07 19:59:40 +00:00
|
|
|
extern const char kUrl[];
|
2014-06-30 22:30:29 +00:00
|
|
|
extern const char kOffScreenRenderingEnabled[];
|
|
|
|
extern const char kOffScreenFrameRate[];
|
|
|
|
extern const char kTransparentPaintingEnabled[];
|
2014-12-02 11:23:57 +00:00
|
|
|
extern const char kShowUpdateRect[];
|
2013-04-05 17:05:37 +00:00
|
|
|
extern const char kMouseCursorChangeDisabled[];
|
2015-02-13 23:17:08 +00:00
|
|
|
extern const char kRequestContextPerBrowser[];
|
2016-01-11 19:19:51 -05:00
|
|
|
extern const char kRequestContextSharedCache[];
|
2015-04-09 16:59:34 +02:00
|
|
|
extern const char kBackgroundColor[];
|
2015-08-17 18:14:59 -04:00
|
|
|
extern const char kEnableGPU[];
|
2015-12-04 21:58:56 -05:00
|
|
|
extern const char kFilterURL[];
|
2016-01-19 15:09:01 -05:00
|
|
|
extern const char kUseViews[];
|
|
|
|
extern const char kHideFrame[];
|
|
|
|
extern const char kHideControls[];
|
2012-04-03 01:34:16 +00:00
|
|
|
|
2015-01-23 19:09:34 +00:00
|
|
|
} // namespace switches
|
|
|
|
} // namespace client
|
2012-04-03 01:34:16 +00:00
|
|
|
|
2015-01-31 00:55:56 +00:00
|
|
|
#endif // CEF_TESTS_CEFCLIENT_CEFCLIENT_COMMON_SWITCHES_H_
|