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.
|
|
|
|
|
|
|
|
#ifndef CEF_TESTS_CEFCLIENT_CEFCLIENT_SWITCHES_H_
|
|
|
|
#define CEF_TESTS_CEFCLIENT_CEFCLIENT_SWITCHES_H_
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
namespace cefclient {
|
|
|
|
|
|
|
|
extern const char kMultiThreadedMessageLoop[];
|
|
|
|
extern const char kCachePath[];
|
2013-02-07 20:59:40 +01:00
|
|
|
extern const char kUrl[];
|
|
|
|
extern const char kExternalDevTools[];
|
2012-11-21 01:40:15 +01:00
|
|
|
extern const char kOffScreenRenderingEnabled[];
|
2013-01-12 00:00:39 +01:00
|
|
|
extern const char kTransparentPaintingEnabled[];
|
2013-04-05 19:05:37 +02:00
|
|
|
extern const char kMouseCursorChangeDisabled[];
|
2012-04-03 03:34:16 +02:00
|
|
|
|
|
|
|
} // namespace cefclient
|
|
|
|
|
|
|
|
#endif // CEF_TESTS_CEFCLIENT_CEFCLIENT_SWITCHES_H_
|