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

Side by Side Diff: Source/core/dom/MessageChannel.cpp

Issue 540283003: bindings: Retires ScriptWrappable::init, etc. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Addressed a review comment. Created 6 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/dom/Iterator.h ('k') | Source/core/dom/MessagePort.cpp » ('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) 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
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
OLDNEW
« no previous file with comments | « Source/core/dom/Iterator.h ('k') | Source/core/dom/MessagePort.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698