Index: third_party/WebKit/Source/core/events/MessageEvent.idl |
diff --git a/third_party/WebKit/Source/core/events/MessageEvent.idl b/third_party/WebKit/Source/core/events/MessageEvent.idl |
index 61dc799e524b64a4243a5ae695220df4901e63ee..6189610afaed78b7a3091c4ebd4dc22896f574ae 100644 |
--- a/third_party/WebKit/Source/core/events/MessageEvent.idl |
+++ b/third_party/WebKit/Source/core/events/MessageEvent.idl |
@@ -36,10 +36,10 @@ |
readonly attribute DOMString origin; |
readonly attribute DOMString lastEventId; |
// TODO(bashi): |source| should be (WindowProxy or MessagePort)? |
- readonly attribute EventTarget? source; |
+ [Measure] readonly attribute EventTarget? source; |
// TODO(foolip): |ports| should be FrozenArray<MessagePort>? |
- readonly attribute MessagePort[]? ports; |
- [RuntimeEnabled=suborigins] readonly attribute DOMString suborigin; |
+ [Measure] readonly attribute MessagePort[]? ports; |
+ [Measure, RuntimeEnabled=suborigins] readonly attribute DOMString suborigin; |
// TODO(foolip): None of the initMessageEvent() arguments should be |
// optional, and |sourceArg| and |portsArg| are of the wrong type. |