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

Unified Diff: tools/dom/scripts/systemnative.py

Issue 1873933002: Fix handling of cross-origin windows in dartium and better align general handling of different fram… (Closed) Base URL: git@github.com:dart-lang/sdk.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
Index: tools/dom/scripts/systemnative.py
diff --git a/tools/dom/scripts/systemnative.py b/tools/dom/scripts/systemnative.py
index 6d0c94d78c9b500bb71e80ea76f63fa9eb147607..1f5a030fc6a581a4e7d0be8b5653a33e8b038bf0 100644
--- a/tools/dom/scripts/systemnative.py
+++ b/tools/dom/scripts/systemnative.py
@@ -116,7 +116,7 @@ class DartiumBackend(HtmlDartGenerator):
if idl_type == 'Promise':
return _promise_to_future
if conversion:
- if conversion.function_name in ('_convertNativeToDart_Window', '_convertNativeToDart_EventTarget', 'convertNativeToDart_DateTime', 'convertNativeToDart_ImageData'):
+ if conversion.function_name in ('convertNativeToDart_DateTime', 'convertNativeToDart_ImageData'):
return None
return conversion

Powered by Google App Engine
This is Rietveld 408576698