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

Unified Diff: Source/WebCore/bindings/v8/V8WindowErrorHandler.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
Index: Source/WebCore/bindings/v8/V8WindowErrorHandler.cpp
===================================================================
--- Source/WebCore/bindings/v8/V8WindowErrorHandler.cpp (revision 108090)
+++ Source/WebCore/bindings/v8/V8WindowErrorHandler.cpp (working copy)
@@ -58,7 +58,7 @@
v8::Handle<v8::Value> parameters[3] = { v8String(errorEvent->message()), v8String(errorEvent->filename()), v8::Integer::New(errorEvent->lineno()) };
v8::TryCatch tryCatch;
tryCatch.SetVerbose(true);
- returnValue = V8Proxy::instrumentedCallFunction(0 /* page */, callFunction, thisValue, 3, parameters);
+ returnValue = V8Proxy::instrumentedCallFunction(0 /* frame */, callFunction, thisValue, 3, parameters);
}
return returnValue;
}
« no previous file with comments | « Source/WebCore/bindings/v8/V8RecursionScope.cpp ('k') | Source/WebCore/bindings/v8/custom/V8CustomVoidCallback.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698