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

Unified Diff: third_party/WebKit/Source/modules/broadcastchannel/BroadcastChannel.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/broadcastchannel/BroadcastChannel.idl
diff --git a/third_party/WebKit/Source/modules/broadcastchannel/BroadcastChannel.idl b/third_party/WebKit/Source/modules/broadcastchannel/BroadcastChannel.idl
index c9b2912dc4d6508a812bc085954e3fba3de3d8e8..33a5f2c7ce0b61220793da7516d1fa15f2f27393 100644
--- a/third_party/WebKit/Source/modules/broadcastchannel/BroadcastChannel.idl
+++ b/third_party/WebKit/Source/modules/broadcastchannel/BroadcastChannel.idl
@@ -14,11 +14,11 @@
DependentLifetime,
Measure,
] interface BroadcastChannel : EventTarget {
- readonly attribute DOMString name;
+ [Measure] readonly attribute DOMString name;
[RaisesException, Measure] void postMessage(any message);
[Measure] void close();
// event handlers
- attribute EventHandler onmessage;
+ [Measure] attribute EventHandler onmessage;
};

Powered by Google App Engine
This is Rietveld 408576698