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

Unified Diff: Source/bindings/scripts/unstable/v8_interface.py

Issue 77453002: IDL compiler: [CheckSecurity=Frame] interface + [DoNotCheckSecurity] members (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Synced to fixes Created 7 years, 1 month 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/unstable/v8_interface.py
diff --git a/Source/bindings/scripts/unstable/v8_interface.py b/Source/bindings/scripts/unstable/v8_interface.py
index e4acb5cee984fb7636815885e93b23eeb4d0b5d0..00dfc6fefa8ccd12ad1d3f3ef0eebe88804759d5 100644
--- a/Source/bindings/scripts/unstable/v8_interface.py
+++ b/Source/bindings/scripts/unstable/v8_interface.py
@@ -109,6 +109,9 @@ def generate_interface(interface):
('overload_index' not in method or method['overload_index'] == 1))
template_contents.update({
+ 'has_domain_safe_method_setter': any(
haraken 2013/11/21 10:13:05 has_domain_safe_method_setter => has_origin_safe_m
Nils Barth (inactive) 2013/11/22 03:17:52 fixed passim
+ method['is_check_security_for_frame'] and not method['is_read_only']
+ for method in methods),
'has_method_configuration': any(method['do_generate_method_configuration'] for method in methods),
'has_per_context_enabled_methods': any(method['per_context_enabled_function_name'] for method in methods),
'methods': methods,

Powered by Google App Engine
This is Rietveld 408576698