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

Unified Diff: Source/core/dom/DOMStringList.idl

Issue 1207793004: Add additional usage metrics for DOMStringList methods (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 6 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
« no previous file with comments | « Source/core/dom/DOMStringList.cpp ('k') | Source/core/frame/Location.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/DOMStringList.idl
diff --git a/Source/core/dom/DOMStringList.idl b/Source/core/dom/DOMStringList.idl
index 02926f66392101f9689489bc4c9c874cded62f27..3821bd83be36d7c9cc5509d53ca1d760da4a6201 100644
--- a/Source/core/dom/DOMStringList.idl
+++ b/Source/core/dom/DOMStringList.idl
@@ -30,6 +30,8 @@
WillBeGarbageCollected,
] interface DOMStringList {
readonly attribute unsigned long length;
- [Measure] getter DOMString? item(unsigned long index);
- [MeasureAs=DOMStringListContains] boolean contains(DOMString string);
+ getter DOMString? (unsigned long index);
+
+ [CallWith=ExecutionContext] DOMString? item(unsigned long index);
+ [CallWith=ExecutionContext,MeasureAs=DOMStringListContains] boolean contains(DOMString string);
};
« no previous file with comments | « Source/core/dom/DOMStringList.cpp ('k') | Source/core/frame/Location.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698