Use int instead of bool for C API compatibility (issue #1196).
git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@1605 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
parent
8a73d26fc2
commit
a0be247527
|
@ -224,11 +224,11 @@ typedef struct _cef_settings_t {
|
|||
int multi_threaded_message_loop;
|
||||
|
||||
///
|
||||
// Set to true to enable windowless (off-screen) rendering support. Do not
|
||||
// Set to true (1) to enable windowless (off-screen) rendering support. Do not
|
||||
// enable this value if the application does not use windowless rendering as
|
||||
// it may reduce rendering performance on some systems.
|
||||
///
|
||||
bool windowless_rendering_enabled;
|
||||
int windowless_rendering_enabled;
|
||||
|
||||
///
|
||||
// Set to true (1) to disable configuration of browser process features using
|
||||
|
|
Loading…
Reference in New Issue