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

Unified Diff: third_party/WebKit/Source/core/html/HTMLScriptElement.idl

Issue 2526943002: Add use counters for lots of DOM APIs.
Patch Set: Add use counters for lots of DOM APIs. Created 4 years 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: third_party/WebKit/Source/core/html/HTMLScriptElement.idl
diff --git a/third_party/WebKit/Source/core/html/HTMLScriptElement.idl b/third_party/WebKit/Source/core/html/HTMLScriptElement.idl
index faa2444abaf174aa60315b39d47744c248dc3bf1..1f16a62be874954ac1d740aedd8fd3b2c6bbbecc 100644
--- a/third_party/WebKit/Source/core/html/HTMLScriptElement.idl
+++ b/third_party/WebKit/Source/core/html/HTMLScriptElement.idl
@@ -23,7 +23,7 @@ interface HTMLScriptElement : HTMLElement {
[CEReactions, Reflect, URL] attribute DOMString src;
[CEReactions, Reflect] attribute DOMString type;
[CEReactions, Reflect] attribute DOMString charset;
- [CEReactions] attribute boolean async;
+ [Measure, CEReactions] attribute boolean async;
[CEReactions, Reflect] attribute boolean defer;
[CEReactions, Reflect, ReflectOnly=("anonymous","use-credentials"), ReflectEmpty="anonymous", ReflectInvalid="anonymous"] attribute DOMString? crossOrigin;
[CEReactions] attribute DOMString text;
@@ -37,9 +37,9 @@ interface HTMLScriptElement : HTMLElement {
// Content Security Policy
// https://w3c.github.io/webappsec/specs/content-security-policy/#script-src-the-nonce-attribute
- [CEReactions, Reflect, RuntimeEnabled=ExperimentalContentSecurityPolicyFeatures] attribute DOMString nonce;
+ [Measure, CEReactions, Reflect, RuntimeEnabled=ExperimentalContentSecurityPolicyFeatures] attribute DOMString nonce;
// Subresource Integrity
// https://w3c.github.io/webappsec-subresource-integrity/#HTMLScriptElement
- [Reflect] attribute DOMString integrity;
+ [Measure, Reflect] attribute DOMString integrity;
};
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLQuoteElement.idl ('k') | third_party/WebKit/Source/core/html/HTMLSelectElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698