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

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

Issue 299203002: Support per-overload [RuntimeEnabled] extended attribute (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 7 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 41e2088c9f259ead4719804715432099b599c090..70141698369028fcffd817fe87b7e9aa0fea7bbf 100644
--- a/Source/bindings/templates/methods.cpp
+++ b/Source/bindings/templates/methods.cpp
@@ -342,6 +342,7 @@ static void {{overloads.name}}Method{{world_suffix}}(const v8::FunctionCallbackI
{# Then resolve by testing argument #}
{% for test, method in tests_methods %}
{# 10. If i = d, then: #}
+ {% filter runtime_enabled(method.overload_runtime_enabled_function) %}
if ({{test}}) {
{% if method.measure_as and not overloads.measure_all_as %}
UseCounter::count(callingExecutionContext(isolate), UseCounter::{{method.measure_as}});
@@ -352,6 +353,7 @@ static void {{overloads.name}}Method{{world_suffix}}(const v8::FunctionCallbackI
{{method.name}}{{method.overload_index}}Method{{world_suffix}}(info);
return;
}
+ {% endfilter %}
{% endfor %}
break;
{% endfor %}

Powered by Google App Engine
This is Rietveld 408576698