mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2024-12-12 01:26:03 +01:00
801ff3ca43
- Move to the new DOM storage backend. Persistent localStorage support will need to be re-implemented (issue #603). - Add CefV8Value::CreateUInt method and indicate that integer types are 32bit via usage of int32 and uint32 types (issue #331). - Add CefV8Context::Eval method for synchronous JavaScript execution that returns a value or exception (issue #444). - Move exception handling from an ExecuteFunction argument to a CefV8Value attribute (issue #546). - Make user data an attribute for all CefV8Value object types and not just CreateObject (issue #547). - Un-fork SQLitePersistentCookieStore by adding stub implementations for sqlite_diagnostics and browser_thread. - Update tools/cef_parser.py to match the CEF3 version. git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@644 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
31 lines
919 B
INI
31 lines
919 B
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 = [
|
|
{
|
|
# http://codereview.chromium.org/8086022/
|
|
'name': 'build',
|
|
'path': '../build/',
|
|
},
|
|
{
|
|
# http://codereview.chromium.org/6730028/
|
|
'name': 'base',
|
|
'path': '../base/',
|
|
},
|
|
{
|
|
# 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=364
|
|
'name': 'spi_webcore_364',
|
|
'path': '../third_party/WebKit/Source/WebCore/',
|
|
'condition': 'CEF_SPI_BUILD',
|
|
},
|
|
]
|