mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-03-22 15:00:12 +01:00
- Implement support for transparency. Change the backing store to use Skia instead of GDI and to keep alpha values. - Implement support for select popups. Requires a patch to Chromium (content_popups.patch). - Implicitly disable accelerated compositing when using off-screen rendering. - Introduce a new CefMouseEvent structure for representing mouse event information passed to CefBrowser methods. - Merge cef_key_event_modifiers_t into cef_event_flags_t. - Add a new argument to CefBrowser::Invalidate telling the browser whether to invalidate the select popup or the main view. - Add a new cefclient "transparent-painting-enabled" command-line flag to test transparent off-screen rendering. - Add a new cefclient "Transparency" test. - Fix the cefclient off-screen rendering rotation effect to work even when the underlying web content is not updating. - Add unit tests for transparent painting and select popups. git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@979 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
46 lines
1.3 KiB
INI
46 lines
1.3 KiB
INI
# Each map in the list associates a patch file name with a target path and
|
|
# optional condition. All paths in the patch file must be relative to the
|
|
# target path. Each map should include a comment linking to the code review
|
|
# or bug report that the patch relates to. If a condition is provided the
|
|
# patch will only be applied if an environment variable with the specified
|
|
# name exists.
|
|
|
|
patches = [
|
|
{
|
|
# Necessary for grit integration
|
|
'name': 'gritsettings',
|
|
'path': '../tools/gritsettings/',
|
|
},
|
|
{
|
|
# http://codereview.chromium.org/8086022/
|
|
'name': 'build',
|
|
'path': '../build/',
|
|
},
|
|
{
|
|
# http://code.google.com/p/gyp/issues/detail?id=223
|
|
'name': 'tools_gyp',
|
|
'path': '../tools/gyp/',
|
|
},
|
|
{
|
|
# http://code.google.com/p/chromiumembedded/issues/detail?id=496
|
|
'name': 'zlib',
|
|
'path': '../third_party/zlib/',
|
|
},
|
|
{
|
|
# http://code.google.com/p/chromiumembedded/issues/detail?id=451
|
|
'name': 'webkit_451',
|
|
'path': '../third_party/WebKit/Source/',
|
|
},
|
|
{
|
|
# http://code.google.com/p/chromium/issues/detail?id=155761
|
|
'name': 'content_popups',
|
|
'path': '../content/',
|
|
},
|
|
{
|
|
# http://code.google.com/p/chromiumembedded/issues/detail?id=364
|
|
'name': 'spi_webcore_364',
|
|
'path': '../third_party/WebKit/Source/WebCore/',
|
|
'condition': 'CEF_SPI_BUILD',
|
|
},
|
|
]
|