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

Unified Diff: Source/bindings/scripts/v8_private_script_interface.py

Issue 362993004: Implement Blink-in-JS for DOM attributes (Closed) Base URL: svn://svn.chromium.org/blink/trunk
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/scripts/v8_private_script_interface.py
diff --git a/Source/bindings/scripts/v8_private_script_interface.py b/Source/bindings/scripts/v8_private_script_interface.py
index ab6f4de577905f0f0fb2d73076a6bdf2b0baa83b..c4d16c594a12827ffa6aae46d18f9dbdc3c91ad4 100644
--- a/Source/bindings/scripts/v8_private_script_interface.py
+++ b/Source/bindings/scripts/v8_private_script_interface.py
@@ -56,8 +56,7 @@ def method_context(operation):
'cpp_type': idl_type.cpp_type_args(raw_type=True),
'name': operation.name,
'v8_value_to_cpp_value': v8_types.v8_value_to_cpp_value(
- idl_type, extended_attributes, 'v8Value', 0,
- isolate='scriptState->isolate()'),
+ idl_type, extended_attributes, 'v8Value', 0, 'scriptState->isolate()'),
}
contents.update(arguments_context(operation.arguments, idl_type))
return contents

Powered by Google App Engine
This is Rietveld 408576698