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

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

Issue 2572003003: NOT FOR SUBMIT: use counters for jdm@
Patch Set: Merge branch 'jdm-usecounters' into jdm-merge 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/HTMLTrackElement.idl
diff --git a/third_party/WebKit/Source/core/html/HTMLTrackElement.idl b/third_party/WebKit/Source/core/html/HTMLTrackElement.idl
index b3334c25812be2dec34adf5b5c2d7a8b4320163d..14abeff0fd0e42731a6558a6da5924cdb6b50ca8 100644
--- a/third_party/WebKit/Source/core/html/HTMLTrackElement.idl
+++ b/third_party/WebKit/Source/core/html/HTMLTrackElement.idl
@@ -26,17 +26,17 @@
// https://html.spec.whatwg.org/#the-track-element
interface HTMLTrackElement : HTMLElement {
- [CEReactions] attribute DOMString kind;
- [CEReactions, Reflect, URL] attribute DOMString src;
- [CEReactions, Reflect] attribute DOMString srclang;
- [CEReactions, Reflect] attribute DOMString label;
- [CEReactions, Reflect] attribute boolean default;
+ [Measure, CEReactions] attribute DOMString kind;
+ [Measure, CEReactions, Reflect, URL] attribute DOMString src;
+ [Measure, CEReactions, Reflect] attribute DOMString srclang;
+ [Measure, CEReactions, Reflect] attribute DOMString label;
+ [Measure, CEReactions, Reflect] attribute boolean default;
const unsigned short NONE = 0;
const unsigned short LOADING = 1;
const unsigned short LOADED = 2;
const unsigned short ERROR = 3;
- [ImplementedAs=getReadyState] readonly attribute unsigned short readyState;
+ [Measure, ImplementedAs=getReadyState] readonly attribute unsigned short readyState;
- readonly attribute TextTrack track;
+ [Measure] readonly attribute TextTrack track;
};
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLTextAreaElement.idl ('k') | third_party/WebKit/Source/core/html/HTMLUListElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698