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

Unified Diff: third_party/WebKit/Source/core/workers/WorkerGlobalScope.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/core/workers/WorkerGlobalScope.idl
diff --git a/third_party/WebKit/Source/core/workers/WorkerGlobalScope.idl b/third_party/WebKit/Source/core/workers/WorkerGlobalScope.idl
index 2c6f355a2bf682f5cdb7cacef25468cbbbec0c08..70b5537c6a940ab913b78c7220d5207748adb02c 100644
--- a/third_party/WebKit/Source/core/workers/WorkerGlobalScope.idl
+++ b/third_party/WebKit/Source/core/workers/WorkerGlobalScope.idl
@@ -57,12 +57,12 @@
[RuntimeEnabled=CorsRFC1918, ImplementedAs=addressSpaceForBindings] readonly attribute AddressSpace addressSpace;
// Unhandled Promise Rejection Events
- attribute EventHandler onrejectionhandled;
- attribute EventHandler onunhandledrejection;
+ [Measure] attribute EventHandler onrejectionhandled;
+ [Measure] attribute EventHandler onunhandledrejection;
// Secure Contexts
// https://w3c.github.io/webappsec-secure-contexts/#dom-windoworworkerglobalscope-issecurecontext
- [ImplementedAs=isSecureContextForBindings] readonly attribute boolean isSecureContext;
+ [Measure, ImplementedAs=isSecureContextForBindings] readonly attribute boolean isSecureContext;
};
WorkerGlobalScope implements WindowBase64;

Powered by Google App Engine
This is Rietveld 408576698