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

Unified Diff: third_party/WebKit/Source/modules/serviceworkers/ServiceWorker.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/modules/serviceworkers/ServiceWorker.idl
diff --git a/third_party/WebKit/Source/modules/serviceworkers/ServiceWorker.idl b/third_party/WebKit/Source/modules/serviceworkers/ServiceWorker.idl
index 5ae229129270c3a7deedb0a70ebef14d3e601cbd..4d7a394e8e3327e2f02cd5fdcbe3fe05d4ac1daf 100644
--- a/third_party/WebKit/Source/modules/serviceworkers/ServiceWorker.idl
+++ b/third_party/WebKit/Source/modules/serviceworkers/ServiceWorker.idl
@@ -43,12 +43,12 @@ enum ServiceWorkerState {
DependentLifetime,
] interface ServiceWorker : EventTarget {
- [PostMessage, RaisesException] void postMessage(SerializedScriptValue message, optional sequence<Transferable> transfer);
+ [Measure, PostMessage, RaisesException] void postMessage(SerializedScriptValue message, optional sequence<Transferable> transfer);
- readonly attribute USVString scriptURL;
- readonly attribute ServiceWorkerState state;
+ [Measure] readonly attribute USVString scriptURL;
+ [Measure] readonly attribute ServiceWorkerState state;
- attribute EventHandler onstatechange;
+ [Measure] attribute EventHandler onstatechange;
};
ServiceWorker implements AbstractWorker;

Powered by Google App Engine
This is Rietveld 408576698