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

Unified Diff: third_party/WebKit/Source/core/streams/UnderlyingSourceBase.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/streams/UnderlyingSourceBase.idl
diff --git a/third_party/WebKit/Source/core/streams/UnderlyingSourceBase.idl b/third_party/WebKit/Source/core/streams/UnderlyingSourceBase.idl
index 2b05a8d7038eec5fb591788a83dd9a1424429d2c..ecc54926cc14f10cd56287ebd3aa2cb27f994847 100644
--- a/third_party/WebKit/Source/core/streams/UnderlyingSourceBase.idl
+++ b/third_party/WebKit/Source/core/streams/UnderlyingSourceBase.idl
@@ -13,9 +13,9 @@
NoInterfaceObject,
]
interface UnderlyingSourceBase {
- [CallWith=ScriptState, ImplementedAs=startWrapper] Promise<void> start(any stream);
- [CallWith=ScriptState] Promise<void> pull();
- [CallWith=ScriptState, ImplementedAs=cancelWrapper] Promise<void> cancel([Default=Undefined] optional any reason);
+ [Measure, CallWith=ScriptState, ImplementedAs=startWrapper] Promise<void> start(any stream);
+ [Measure, CallWith=ScriptState] Promise<void> pull();
+ [Measure, CallWith=ScriptState, ImplementedAs=cancelWrapper] Promise<void> cancel([Default=Undefined] optional any reason);
void notifyLockAcquired();
void notifyLockReleased();

Powered by Google App Engine
This is Rietveld 408576698