| 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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 MessageEvent(PassRefPtr<SerializedScriptValue> data, const String& origin, c
onst String& lastEventId, PassRefPtr<EventTarget> source, PassOwnPtr<MessagePort
Array>); | 122 MessageEvent(PassRefPtr<SerializedScriptValue> data, const String& origin, c
onst String& lastEventId, PassRefPtr<EventTarget> source, PassOwnPtr<MessagePort
Array>); |
| 123 MessageEvent(PassRefPtr<SerializedScriptValue> data, const String& origin, c
onst String& lastEventId, PassRefPtr<EventTarget> source, PassOwnPtr<MessagePort
ChannelArray>); | 123 MessageEvent(PassRefPtr<SerializedScriptValue> data, const String& origin, c
onst String& lastEventId, PassRefPtr<EventTarget> source, PassOwnPtr<MessagePort
ChannelArray>); |
| 124 | 124 |
| 125 explicit MessageEvent(const String& data, const String& origin); | 125 explicit MessageEvent(const String& data, const String& origin); |
| 126 explicit MessageEvent(PassRefPtrWillBeRawPtr<Blob> data, const String& origi
n); | 126 explicit MessageEvent(PassRefPtrWillBeRawPtr<Blob> data, const String& origi
n); |
| 127 explicit MessageEvent(PassRefPtr<ArrayBuffer> data, const String& origin); | 127 explicit MessageEvent(PassRefPtr<ArrayBuffer> data, const String& origin); |
| 128 | 128 |
| 129 DataType m_dataType; | 129 DataType m_dataType; |
| 130 RefPtr<SerializedScriptValue> m_dataAsSerializedScriptValue; | 130 RefPtr<SerializedScriptValue> m_dataAsSerializedScriptValue; |
| 131 String m_dataAsString; | 131 String m_dataAsString; |
| 132 RefPtrWillBePersistent<Blob> m_dataAsBlob; | 132 RefPtrWillBeMember<Blob> m_dataAsBlob; |
| 133 RefPtr<ArrayBuffer> m_dataAsArrayBuffer; | 133 RefPtr<ArrayBuffer> m_dataAsArrayBuffer; |
| 134 String m_origin; | 134 String m_origin; |
| 135 String m_lastEventId; | 135 String m_lastEventId; |
| 136 RefPtr<EventTarget> m_source; | 136 RefPtr<EventTarget> m_source; |
| 137 // m_ports are the MessagePorts in an engtangled state, and m_channels are | 137 // 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 | 138 // the MessageChannels in a disentangled state. Only one of them can be |
| 139 // non-empty at a time. entangleMessagePorts() moves between the states. | 139 // non-empty at a time. entangleMessagePorts() moves between the states. |
| 140 OwnPtr<MessagePortArray> m_ports; | 140 OwnPtr<MessagePortArray> m_ports; |
| 141 OwnPtr<MessagePortChannelArray> m_channels; | 141 OwnPtr<MessagePortChannelArray> m_channels; |
| 142 }; | 142 }; |
| 143 | 143 |
| 144 } // namespace WebCore | 144 } // namespace WebCore |
| 145 | 145 |
| 146 #endif // MessageEvent_h | 146 #endif // MessageEvent_h |
| OLD | NEW |