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

Unified Diff: third_party/WebKit/Source/core/html/track/TextTrackList.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/track/TextTrackList.idl
diff --git a/third_party/WebKit/Source/core/html/track/TextTrackList.idl b/third_party/WebKit/Source/core/html/track/TextTrackList.idl
index 78fdaf64fa80c9bbadf3743451793e84ef9f2f14..d80bca1af6c5a77b2da9e0880bf24187c4b39330 100644
--- a/third_party/WebKit/Source/core/html/track/TextTrackList.idl
+++ b/third_party/WebKit/Source/core/html/track/TextTrackList.idl
@@ -28,11 +28,11 @@
[
SetWrapperReferenceFrom=owner,
] interface TextTrackList : EventTarget {
- readonly attribute unsigned long length;
- getter TextTrack (unsigned long index);
- TextTrack? getTrackById(DOMString id);
+ [Measure] readonly attribute unsigned long length;
+ [Measure] getter TextTrack (unsigned long index);
+ [Measure] TextTrack? getTrackById(DOMString id);
- attribute EventHandler onchange;
- attribute EventHandler onaddtrack;
- attribute EventHandler onremovetrack;
+ [Measure] attribute EventHandler onchange;
+ [Measure] attribute EventHandler onaddtrack;
+ [Measure] attribute EventHandler onremovetrack;
};

Powered by Google App Engine
This is Rietveld 408576698