mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-02-19 05:30:40 +01:00
- Simplify and document the relationship between the various context object types. See browser_context.h for a description of the new relationships. - cefclient: Add `request-context-per-browser` command-line flag for testing multiple CefRequestContext instances. - cefclient: Add a CefURLRequest example. git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@2032 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
28 lines
907 B
C++
28 lines
907 B
C++
// Copyright (c) 2013 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.
|
|
|
|
// Defines all of the command line switches used by cefclient.
|
|
|
|
#ifndef CEF_TESTS_CEFCLIENT_CEFCLIENT_COMMON_SWITCHES_H_
|
|
#define CEF_TESTS_CEFCLIENT_CEFCLIENT_COMMON_SWITCHES_H_
|
|
#pragma once
|
|
|
|
namespace client {
|
|
namespace switches {
|
|
|
|
extern const char kMultiThreadedMessageLoop[];
|
|
extern const char kCachePath[];
|
|
extern const char kUrl[];
|
|
extern const char kOffScreenRenderingEnabled[];
|
|
extern const char kOffScreenFrameRate[];
|
|
extern const char kTransparentPaintingEnabled[];
|
|
extern const char kShowUpdateRect[];
|
|
extern const char kMouseCursorChangeDisabled[];
|
|
extern const char kRequestContextPerBrowser[];
|
|
|
|
} // namespace switches
|
|
} // namespace client
|
|
|
|
#endif // CEF_TESTS_CEFCLIENT_CEFCLIENT_COMMON_SWITCHES_H_
|