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

Unified Diff: Source/bindings/templates/methods.cpp

Issue 340763003: Change [ConstructorCallWith={Document => ExecutionContext}] (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 6 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/bindings/templates/methods.cpp
diff --git a/Source/bindings/templates/methods.cpp b/Source/bindings/templates/methods.cpp
index b4915e5797726c4a1550bdd833262039af5a135d..a4e8b540fff92390e27aff9b3d2591d926c17896 100644
--- a/Source/bindings/templates/methods.cpp
+++ b/Source/bindings/templates/methods.cpp
@@ -496,9 +496,6 @@ static void constructor{{constructor.overload_index}}(const v8::FunctionCallback
{% if is_constructor_call_with_execution_context %}
ExecutionContext* executionContext = currentExecutionContext(isolate);
{% endif %}
- {% if is_constructor_call_with_document %}
- Document& document = *toDocument(currentExecutionContext(isolate));
- {% endif %}
{{constructor.cpp_type}} impl = {{constructor.cpp_value}};
{% if is_constructor_raises_exception %}
if (exceptionState.throwIfNeeded())
@@ -540,9 +537,10 @@ static void {{v8_class}}ConstructorCallback(const v8::FunctionCallbackInfo<v8::V
return;
}
- Document* documentPtr = currentDOMWindow(isolate)->document();
+ ExecutionContext* executionContext = currentExecutionContext(info.GetIsolate());
+
+ Document* documentPtr = toDocument(executionContext);
ASSERT(documentPtr);
- Document& document = *documentPtr;
// Make sure the document is added to the DOM Node map. Otherwise, the {{cpp_class}} instance
// may end up being the only node in the map and get garbage-collected prematurely.

Powered by Google App Engine
This is Rietveld 408576698