mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
- Update to Chromium revision 138235.
- 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
This commit is contained in:
@ -1,8 +1,8 @@
|
||||
Index: pylib/gyp/input.py
|
||||
===================================================================
|
||||
--- pylib/gyp/input.py (revision 1323)
|
||||
--- pylib/gyp/input.py (revision 1386)
|
||||
+++ pylib/gyp/input.py (working copy)
|
||||
@@ -666,7 +666,8 @@
|
||||
@@ -683,7 +683,8 @@
|
||||
# that don't load quickly, this can be faster than
|
||||
# <!(python modulename param eters). Do this in |build_file_dir|.
|
||||
oldwd = os.getcwd() # Python doesn't like os.open('.'): no fchdir.
|
||||
@ -12,25 +12,3 @@ Index: pylib/gyp/input.py
|
||||
|
||||
parsed_contents = shlex.split(contents)
|
||||
py_module = __import__(parsed_contents[0])
|
||||
Index: pylib/gyp/mac_tool.py
|
||||
===================================================================
|
||||
--- pylib/gyp/mac_tool.py (revision 1323)
|
||||
+++ pylib/gyp/mac_tool.py (working copy)
|
||||
@@ -54,16 +54,8 @@
|
||||
return self._CopyXIBFile(source, dest)
|
||||
elif extension == '.strings':
|
||||
self._CopyStringsFile(source, dest)
|
||||
- # TODO: Given that files with arbitrary extensions can be copied to the
|
||||
- # bundle, we will want to get rid of this whitelist eventually.
|
||||
- elif extension in [
|
||||
- '.icns', '.manifest', '.pak', '.pdf', '.png', '.sb', '.sh',
|
||||
- '.ttf', '.sdef']:
|
||||
- shutil.copyfile(source, dest)
|
||||
else:
|
||||
- raise NotImplementedError(
|
||||
- "Don't know how to copy bundle resources of type %s while copying "
|
||||
- "%s to %s)" % (extension, source, dest))
|
||||
+ shutil.copyfile(source, dest)
|
||||
|
||||
def _CopyXIBFile(self, source, dest):
|
||||
"""Compiles a XIB file with ibtool into a binary plist in the bundle."""
|
||||
|
Reference in New Issue
Block a user