mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Update to Chromium revision 119867.
git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@504 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
@@ -21,11 +21,6 @@ patches = [
|
||||
'name': 'tools_gyp',
|
||||
'path': '../tools/gyp/',
|
||||
},
|
||||
{
|
||||
# https://bugs.webkit.org/show_bug.cgi?id=73273
|
||||
'name': 'webcore_v8_custom',
|
||||
'path': '../third_party/WebKit/Source/WebCore/bindings/v8/custom/'
|
||||
},
|
||||
{
|
||||
# https://bugs.webkit.org/show_bug.cgi?id=73760
|
||||
'name': 'webcore_cachedresource',
|
||||
|
@@ -1,8 +1,8 @@
|
||||
Index: message_loop.cc
|
||||
===================================================================
|
||||
--- message_loop.cc (revision 115322)
|
||||
--- message_loop.cc (revision 119867)
|
||||
+++ message_loop.cc (working copy)
|
||||
@@ -395,9 +395,13 @@
|
||||
@@ -362,9 +362,13 @@
|
||||
}
|
||||
|
||||
void MessageLoop::AssertIdle() const {
|
||||
@@ -19,9 +19,9 @@ Index: message_loop.cc
|
||||
bool MessageLoop::is_running() const {
|
||||
Index: message_loop.h
|
||||
===================================================================
|
||||
--- message_loop.h (revision 115322)
|
||||
--- message_loop.h (revision 119867)
|
||||
+++ message_loop.h (working copy)
|
||||
@@ -353,6 +353,9 @@
|
||||
@@ -345,6 +345,9 @@
|
||||
// Asserts that the MessageLoop is "idle".
|
||||
void AssertIdle() const;
|
||||
|
||||
|
@@ -1,17 +0,0 @@
|
||||
Index: V8DOMWindowCustom.cpp
|
||||
===================================================================
|
||||
--- V8DOMWindowCustom.cpp (revision 103399)
|
||||
+++ V8DOMWindowCustom.cpp (working copy)
|
||||
@@ -297,8 +297,11 @@
|
||||
static v8::Handle<v8::Value> handlePostMessageCallback(const v8::Arguments& args, bool extendedTransfer)
|
||||
{
|
||||
DOMWindow* window = V8DOMWindow::toNative(args.Holder());
|
||||
+ Frame* frame = V8Proxy::retrieveFrameForCallingContext();
|
||||
+ if (!frame)
|
||||
+ return v8::Undefined();
|
||||
|
||||
- DOMWindow* source = V8Proxy::retrieveFrameForCallingContext()->domWindow();
|
||||
+ DOMWindow* source = frame->domWindow();
|
||||
ASSERT(source->frame());
|
||||
|
||||
// This function has variable arguments and can be:
|
Reference in New Issue
Block a user