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

Side by Side Diff: Source/core/events/MessageEvent.h

Issue 352643005: Drop [TypeChecking=Nullable]; deduce from attribute type instead (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@cleanup-typechecking
Patch Set: rebased Created 6 years, 5 months 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 unified diff | Download patch
« no previous file with comments | « Source/core/events/FocusEvent.h ('k') | Source/core/events/MouseEvent.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2007 Henry Mason (hmason@mac.com) 2 * Copyright (C) 2007 Henry Mason (hmason@mac.com)
3 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserv ed. 3 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserv ed.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 } 79 }
80 static PassRefPtrWillBeRawPtr<MessageEvent> create(const AtomicString& type, const MessageEventInit& initializer, ExceptionState&); 80 static PassRefPtrWillBeRawPtr<MessageEvent> create(const AtomicString& type, const MessageEventInit& initializer, ExceptionState&);
81 virtual ~MessageEvent(); 81 virtual ~MessageEvent();
82 82
83 void initMessageEvent(const AtomicString& type, bool canBubble, bool cancela ble, const String& origin, const String& lastEventId, LocalDOMWindow* source, Pa ssOwnPtrWillBeRawPtr<MessagePortArray>); 83 void initMessageEvent(const AtomicString& type, bool canBubble, bool cancela ble, const String& origin, const String& lastEventId, LocalDOMWindow* source, Pa ssOwnPtrWillBeRawPtr<MessagePortArray>);
84 void initMessageEvent(const AtomicString& type, bool canBubble, bool cancela ble, PassRefPtr<SerializedScriptValue> data, const String& origin, const String& lastEventId, LocalDOMWindow* source, PassOwnPtrWillBeRawPtr<MessagePortArray>); 84 void initMessageEvent(const AtomicString& type, bool canBubble, bool cancela ble, PassRefPtr<SerializedScriptValue> data, const String& origin, const String& lastEventId, LocalDOMWindow* source, PassOwnPtrWillBeRawPtr<MessagePortArray>);
85 85
86 const String& origin() const { return m_origin; } 86 const String& origin() const { return m_origin; }
87 const String& lastEventId() const { return m_lastEventId; } 87 const String& lastEventId() const { return m_lastEventId; }
88 EventTarget* source() const { return m_source.get(); } 88 EventTarget* source() const { return m_source.get(); }
89 EventTarget* source(bool& isNull) const { isNull = !m_source; return m_sourc e.get(); }
90 MessagePortArray ports() const { return m_ports ? *m_ports : MessagePortArra y(); } 89 MessagePortArray ports() const { return m_ports ? *m_ports : MessagePortArra y(); }
91 MessagePortChannelArray* channels() const { return m_channels ? m_channels.g et() : 0; } 90 MessagePortChannelArray* channels() const { return m_channels ? m_channels.g et() : 0; }
92 91
93 virtual const AtomicString& interfaceName() const OVERRIDE; 92 virtual const AtomicString& interfaceName() const OVERRIDE;
94 93
95 enum DataType { 94 enum DataType {
96 DataTypeScriptValue, 95 DataTypeScriptValue,
97 DataTypeSerializedScriptValue, 96 DataTypeSerializedScriptValue,
98 DataTypeString, 97 DataTypeString,
99 DataTypeBlob, 98 DataTypeBlob,
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 // m_ports are the MessagePorts in an engtangled state, and m_channels are 136 // m_ports are the MessagePorts in an engtangled state, and m_channels are
138 // the MessageChannels in a disentangled state. Only one of them can be 137 // the MessageChannels in a disentangled state. Only one of them can be
139 // non-empty at a time. entangleMessagePorts() moves between the states. 138 // non-empty at a time. entangleMessagePorts() moves between the states.
140 OwnPtrWillBeMember<MessagePortArray> m_ports; 139 OwnPtrWillBeMember<MessagePortArray> m_ports;
141 OwnPtr<MessagePortChannelArray> m_channels; 140 OwnPtr<MessagePortChannelArray> m_channels;
142 }; 141 };
143 142
144 } // namespace WebCore 143 } // namespace WebCore
145 144
146 #endif // MessageEvent_h 145 #endif // MessageEvent_h
OLDNEW
« no previous file with comments | « Source/core/events/FocusEvent.h ('k') | Source/core/events/MouseEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698