OLD | NEW |
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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 void setSerializedData(PassRefPtr<SerializedScriptValue> data) | 108 void setSerializedData(PassRefPtr<SerializedScriptValue> data) |
109 { | 109 { |
110 ASSERT(!m_dataAsSerializedScriptValue); | 110 ASSERT(!m_dataAsSerializedScriptValue); |
111 m_dataAsSerializedScriptValue = data; | 111 m_dataAsSerializedScriptValue = data; |
112 } | 112 } |
113 | 113 |
114 void entangleMessagePorts(ExecutionContext*); | 114 void entangleMessagePorts(ExecutionContext*); |
115 | 115 |
116 virtual void trace(Visitor*) OVERRIDE; | 116 virtual void trace(Visitor*) OVERRIDE; |
117 | 117 |
118 virtual v8::Handle<v8::Object> wrap(v8::Handle<v8::Object> creationContext,
v8::Isolate*) OVERRIDE; | |
119 virtual v8::Handle<v8::Object> associateWithWrapper(const WrapperTypeInfo*,
v8::Handle<v8::Object> wrapper, v8::Isolate*) OVERRIDE; | 118 virtual v8::Handle<v8::Object> associateWithWrapper(const WrapperTypeInfo*,
v8::Handle<v8::Object> wrapper, v8::Isolate*) OVERRIDE; |
120 | 119 |
121 private: | 120 private: |
122 MessageEvent(); | 121 MessageEvent(); |
123 MessageEvent(const AtomicString&, const MessageEventInit&); | 122 MessageEvent(const AtomicString&, const MessageEventInit&); |
124 MessageEvent(const String& origin, const String& lastEventId, PassRefPtrWill
BeRawPtr<EventTarget> source, PassOwnPtrWillBeRawPtr<MessagePortArray>); | 123 MessageEvent(const String& origin, const String& lastEventId, PassRefPtrWill
BeRawPtr<EventTarget> source, PassOwnPtrWillBeRawPtr<MessagePortArray>); |
125 MessageEvent(PassRefPtr<SerializedScriptValue> data, const String& origin, c
onst String& lastEventId, PassRefPtrWillBeRawPtr<EventTarget> source, PassOwnPtr
WillBeRawPtr<MessagePortArray>); | 124 MessageEvent(PassRefPtr<SerializedScriptValue> data, const String& origin, c
onst String& lastEventId, PassRefPtrWillBeRawPtr<EventTarget> source, PassOwnPtr
WillBeRawPtr<MessagePortArray>); |
126 MessageEvent(PassRefPtr<SerializedScriptValue> data, const String& origin, c
onst String& lastEventId, PassRefPtrWillBeRawPtr<EventTarget> source, PassOwnPtr
<MessagePortChannelArray>); | 125 MessageEvent(PassRefPtr<SerializedScriptValue> data, const String& origin, c
onst String& lastEventId, PassRefPtrWillBeRawPtr<EventTarget> source, PassOwnPtr
<MessagePortChannelArray>); |
127 | 126 |
128 MessageEvent(const String& data, const String& origin); | 127 MessageEvent(const String& data, const String& origin); |
129 MessageEvent(PassRefPtrWillBeRawPtr<Blob> data, const String& origin); | 128 MessageEvent(PassRefPtrWillBeRawPtr<Blob> data, const String& origin); |
130 MessageEvent(PassRefPtr<ArrayBuffer> data, const String& origin); | 129 MessageEvent(PassRefPtr<ArrayBuffer> data, const String& origin); |
131 | 130 |
132 v8::Handle<v8::Object> associateWithWrapperInternal(v8::Handle<v8::Object> w
rapper, v8::Isolate*); | |
133 | |
134 DataType m_dataType; | 131 DataType m_dataType; |
135 RefPtr<SerializedScriptValue> m_dataAsSerializedScriptValue; | 132 RefPtr<SerializedScriptValue> m_dataAsSerializedScriptValue; |
136 String m_dataAsString; | 133 String m_dataAsString; |
137 RefPtrWillBeMember<Blob> m_dataAsBlob; | 134 RefPtrWillBeMember<Blob> m_dataAsBlob; |
138 RefPtr<ArrayBuffer> m_dataAsArrayBuffer; | 135 RefPtr<ArrayBuffer> m_dataAsArrayBuffer; |
139 String m_origin; | 136 String m_origin; |
140 String m_lastEventId; | 137 String m_lastEventId; |
141 RefPtrWillBeMember<EventTarget> m_source; | 138 RefPtrWillBeMember<EventTarget> m_source; |
142 // m_ports are the MessagePorts in an engtangled state, and m_channels are | 139 // m_ports are the MessagePorts in an engtangled state, and m_channels are |
143 // the MessageChannels in a disentangled state. Only one of them can be | 140 // the MessageChannels in a disentangled state. Only one of them can be |
144 // non-empty at a time. entangleMessagePorts() moves between the states. | 141 // non-empty at a time. entangleMessagePorts() moves between the states. |
145 OwnPtrWillBeMember<MessagePortArray> m_ports; | 142 OwnPtrWillBeMember<MessagePortArray> m_ports; |
146 OwnPtr<MessagePortChannelArray> m_channels; | 143 OwnPtr<MessagePortChannelArray> m_channels; |
147 }; | 144 }; |
148 | 145 |
149 } // namespace blink | 146 } // namespace blink |
150 | 147 |
151 #endif // MessageEvent_h | 148 #endif // MessageEvent_h |
OLD | NEW |