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

Unified Diff: third_party/WebKit/Source/modules/serviceworkers/FetchEvent.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/FetchEvent.idl
diff --git a/third_party/WebKit/Source/modules/serviceworkers/FetchEvent.idl b/third_party/WebKit/Source/modules/serviceworkers/FetchEvent.idl
index ef052c75798ad052837e4ccc2760527ff6e91bfb..e1a10cee91d894711f03f2df11dc0947eec3e995 100644
--- a/third_party/WebKit/Source/modules/serviceworkers/FetchEvent.idl
+++ b/third_party/WebKit/Source/modules/serviceworkers/FetchEvent.idl
@@ -8,10 +8,10 @@
ConstructorCallWith=ScriptState,
Exposed=ServiceWorker,
] interface FetchEvent : ExtendableEvent {
- [SameObject] readonly attribute Request request;
- readonly attribute DOMString? clientId;
- readonly attribute boolean isReload;
+ [Measure, SameObject] readonly attribute Request request;
+ [Measure] readonly attribute DOMString? clientId;
+ [Measure] readonly attribute boolean isReload;
- [CallWith=ScriptState, RaisesException] void respondWith(Promise<Response> r);
+[Measure, CallWith=ScriptState, RaisesException] void respondWith(Promise<Response> r);
[RuntimeEnabled=ServiceWorkerNavigationPreload, CallWith=ScriptState] readonly attribute Promise<Response> preloadResponse;
};

Powered by Google App Engine
This is Rietveld 408576698