Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(84)

Unified Diff: Source/WebCore/bindings/v8/V8NodeFilterCondition.cpp

Issue 9355009: Merge 107170 - DOM mutations should not be delivered on worker threads (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1025/
Patch Set: Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/WebCore/bindings/v8/ScriptFunctionCall.cpp ('k') | Source/WebCore/bindings/v8/V8Proxy.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WebCore/bindings/v8/V8NodeFilterCondition.cpp
===================================================================
--- Source/WebCore/bindings/v8/V8NodeFilterCondition.cpp (revision 108090)
+++ Source/WebCore/bindings/v8/V8NodeFilterCondition.cpp (working copy)
@@ -83,7 +83,7 @@
OwnArrayPtr<v8::Handle<v8::Value> > args = adoptArrayPtr(new v8::Handle<v8::Value>[1]);
args[0] = toV8(node);
- v8::Handle<v8::Value> result = V8Proxy::instrumentedCallFunction(0 /* page */, callback, object, 1, args.get());
+ v8::Handle<v8::Value> result = V8Proxy::instrumentedCallFunction(0 /* frame */, callback, object, 1, args.get());
if (exceptionCatcher.HasCaught()) {
state->setException(exceptionCatcher.Exception());
« no previous file with comments | « Source/WebCore/bindings/v8/ScriptFunctionCall.cpp ('k') | Source/WebCore/bindings/v8/V8Proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698