| Index: third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerRegistration.idl
|
| diff --git a/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerRegistration.idl b/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerRegistration.idl
|
| index d25a82c53289e5b46ce77b286ccbbd78b196345e..0c577533d700b040ef856386ec63503160f789bc 100644
|
| --- a/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerRegistration.idl
|
| +++ b/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerRegistration.idl
|
| @@ -8,15 +8,15 @@
|
| DependentLifetime,
|
| Exposed=(Window,Worker),
|
| ] interface ServiceWorkerRegistration : EventTarget {
|
| - readonly attribute ServiceWorker? installing;
|
| - readonly attribute ServiceWorker? waiting;
|
| - readonly attribute ServiceWorker? active;
|
| + [Measure] readonly attribute ServiceWorker? installing;
|
| + [Measure] readonly attribute ServiceWorker? waiting;
|
| + [Measure] readonly attribute ServiceWorker? active;
|
| [RuntimeEnabled=ServiceWorkerNavigationPreload] readonly attribute NavigationPreloadManager navigationPreload;
|
|
|
| - readonly attribute USVString scope;
|
| + [Measure] readonly attribute USVString scope;
|
|
|
| - [CallWith=ScriptState] Promise<void> update();
|
| - [CallWith=ScriptState] Promise<boolean> unregister();
|
| + [Measure, CallWith=ScriptState] Promise<void> update();
|
| + [Measure, CallWith=ScriptState] Promise<boolean> unregister();
|
|
|
| - attribute EventHandler onupdatefound;
|
| + [Measure] attribute EventHandler onupdatefound;
|
| };
|
|
|