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

Side by Side Diff: Source/core/dom/MessagePort.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/MessageChannel.cpp ('k') | Source/core/dom/MutationObserver.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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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
OLDNEW
« no previous file with comments | « Source/core/dom/MessageChannel.cpp ('k') | Source/core/dom/MutationObserver.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698