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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/V8Binding.cpp

Issue 1864623004: messageHandlerInMainThread should return immediately if there is no entered window (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 | « no previous file | third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/bindings/core/v8/V8Binding.cpp
diff --git a/third_party/WebKit/Source/bindings/core/v8/V8Binding.cpp b/third_party/WebKit/Source/bindings/core/v8/V8Binding.cpp
index f1363a1dab40481862f6c971bd07b950a2c70ad7..901a73831f44c4cf0eb827f20b37b63c7c53521e 100644
--- a/third_party/WebKit/Source/bindings/core/v8/V8Binding.cpp
+++ b/third_party/WebKit/Source/bindings/core/v8/V8Binding.cpp
@@ -676,6 +676,10 @@ LocalDOMWindow* enteredDOMWindow(v8::Isolate* isolate)
// We don't always have an entered DOM window, for example during microtask callbacks from V8
// (where the entered context may be the DOM-in-JS context). In that case, we fall back
// to the current context.
+ //
+ // TODO(haraken): It's nasty to return a current window from enteredDOMWindow.
+ // All call sites should be updated so that it works even if it doesn't have
+ // an entered window.
window = currentDOMWindow(isolate);
ASSERT(window);
}
« no previous file with comments | « no previous file | third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698