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

Unified Diff: third_party/WebKit/Source/core/html/track/AudioTrackList.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/AudioTrackList.idl
diff --git a/third_party/WebKit/Source/core/html/track/AudioTrackList.idl b/third_party/WebKit/Source/core/html/track/AudioTrackList.idl
index 43a321e8b131863b7fb7309c477cd0f63bfb7d4a..4d3bce54be85fa3e1bb6fc2a5786f6b05a707dce 100644
--- a/third_party/WebKit/Source/core/html/track/AudioTrackList.idl
+++ b/third_party/WebKit/Source/core/html/track/AudioTrackList.idl
@@ -8,11 +8,11 @@
RuntimeEnabled=AudioVideoTracks,
SetWrapperReferenceFrom=owner,
] interface AudioTrackList : EventTarget {
- readonly attribute unsigned long length;
- getter AudioTrack (unsigned long index);
- AudioTrack? getTrackById(DOMString id);
+ [Measure] readonly attribute unsigned long length;
+ [Measure] getter AudioTrack (unsigned long index);
+ [Measure] AudioTrack? getTrackById(DOMString id);
- attribute EventHandler onchange;
- attribute EventHandler onaddtrack;
- attribute EventHandler onremovetrack;
+ [Measure] attribute EventHandler onchange;
+ [Measure] attribute EventHandler onaddtrack;
+ [Measure] attribute EventHandler onremovetrack;
};
« no previous file with comments | « third_party/WebKit/Source/core/html/track/AudioTrack.idl ('k') | third_party/WebKit/Source/core/html/track/TextTrack.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698