OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2008 Apple Inc. All Rights Reserved. | 2 * Copyright (C) 2008 Apple Inc. All Rights Reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 port->suspendIfNeeded(); | 48 port->suspendIfNeeded(); |
49 return port.release(); | 49 return port.release(); |
50 } | 50 } |
51 | 51 |
52 MessagePort::MessagePort(ExecutionContext& executionContext) | 52 MessagePort::MessagePort(ExecutionContext& executionContext) |
53 : ActiveDOMObject(&executionContext) | 53 : ActiveDOMObject(&executionContext) |
54 , m_started(false) | 54 , m_started(false) |
55 , m_closed(false) | 55 , m_closed(false) |
56 , m_weakFactory(this) | 56 , m_weakFactory(this) |
57 { | 57 { |
58 ScriptWrappable::init(this); | |
59 } | 58 } |
60 | 59 |
61 MessagePort::~MessagePort() | 60 MessagePort::~MessagePort() |
62 { | 61 { |
63 close(); | 62 close(); |
64 } | 63 } |
65 | 64 |
66 void MessagePort::postMessage(ExecutionContext*, PassRefPtr<SerializedScriptValu
e> message, const MessagePortArray* ports, ExceptionState& exceptionState) | 65 void MessagePort::postMessage(ExecutionContext*, PassRefPtr<SerializedScriptValu
e> message, const MessagePortArray* ports, ExceptionState& exceptionState) |
67 { | 66 { |
68 if (!isEntangled()) | 67 if (!isEntangled()) |
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
250 OwnPtrWillBeRawPtr<MessagePortArray> portArray = adoptPtrWillBeNoop(new Mess
agePortArray(channels->size())); | 249 OwnPtrWillBeRawPtr<MessagePortArray> portArray = adoptPtrWillBeNoop(new Mess
agePortArray(channels->size())); |
251 for (unsigned i = 0; i < channels->size(); ++i) { | 250 for (unsigned i = 0; i < channels->size(); ++i) { |
252 RefPtrWillBeRawPtr<MessagePort> port = MessagePort::create(context); | 251 RefPtrWillBeRawPtr<MessagePort> port = MessagePort::create(context); |
253 port->entangle((*channels)[i].release()); | 252 port->entangle((*channels)[i].release()); |
254 (*portArray)[i] = port.release(); | 253 (*portArray)[i] = port.release(); |
255 } | 254 } |
256 return portArray.release(); | 255 return portArray.release(); |
257 } | 256 } |
258 | 257 |
259 } // namespace blink | 258 } // namespace blink |
OLD | NEW |