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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 | 44 |
45 // Now entangle the proxies with the appropriate local ports. | 45 // Now entangle the proxies with the appropriate local ports. |
46 port1->entangle(adoptPtr(channel2)); | 46 port1->entangle(adoptPtr(channel2)); |
47 port2->entangle(adoptPtr(channel1)); | 47 port2->entangle(adoptPtr(channel1)); |
48 } | 48 } |
49 | 49 |
50 MessageChannel::MessageChannel(ExecutionContext* context) | 50 MessageChannel::MessageChannel(ExecutionContext* context) |
51 : m_port1(MessagePort::create(*context)) | 51 : m_port1(MessagePort::create(*context)) |
52 , m_port2(MessagePort::create(*context)) | 52 , m_port2(MessagePort::create(*context)) |
53 { | 53 { |
54 ScriptWrappable::init(this); | |
55 createChannel(m_port1.get(), m_port2.get()); | 54 createChannel(m_port1.get(), m_port2.get()); |
56 } | 55 } |
57 | 56 |
58 void MessageChannel::trace(Visitor* visitor) | 57 void MessageChannel::trace(Visitor* visitor) |
59 { | 58 { |
60 visitor->trace(m_port1); | 59 visitor->trace(m_port1); |
61 visitor->trace(m_port2); | 60 visitor->trace(m_port2); |
62 } | 61 } |
63 | 62 |
64 } // namespace blink | 63 } // namespace blink |
OLD | NEW |