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

Unified Diff: Source/bindings/dart/scripts/dart_attributes.py

Issue 668733002: C++ overload resolution in bindings layer (Closed) Base URL: svn://svn.chromium.org/blink/branches/dart/dartium
Patch Set: Rebase fixups Created 6 years, 2 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/dart/scripts/dart_attributes.py
diff --git a/Source/bindings/dart/scripts/dart_attributes.py b/Source/bindings/dart/scripts/dart_attributes.py
index 0507ecc4fc9be8cd48986b67ff9baef47c59525b..908377ce1eae4f1793a0f1fd99eed9a3a6d6b7b7 100644
--- a/Source/bindings/dart/scripts/dart_attributes.py
+++ b/Source/bindings/dart/scripts/dart_attributes.py
@@ -99,12 +99,10 @@ def attribute_context(interface, attribute):
native_entry_getter = \
DartUtilities.generate_native_entry(interface.name, context,
- attribute.name, 'Getter',
- None, [], None)
+ attribute.name, 'Getter', [])
native_entry_setter = \
DartUtilities.generate_native_entry(interface.name, context,
- attribute.name, 'Setter',
- None, ["value"], None)
+ attribute.name, 'Setter', ["value"])
context.update({
'native_entry_getter': native_entry_getter,
'native_entry_setter': native_entry_setter,

Powered by Google App Engine
This is Rietveld 408576698