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

Side by Side Diff: chrome/common/webmessageportchannel_impl.cc

Issue 1843003: Enable WorkerTest.WorkerContextMultiPort. (Closed) Base URL: git://codf21.jail/chromium.git
Patch Set: Created 10 years, 7 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
« no previous file with comments | « no previous file | chrome/worker/worker_uitest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/common/webmessageportchannel_impl.h" 5 #include "chrome/common/webmessageportchannel_impl.h"
6 6
7 #include "chrome/common/child_process.h" 7 #include "chrome/common/child_process.h"
8 #include "chrome/common/child_thread.h" 8 #include "chrome/common/child_thread.h"
9 #include "chrome/common/worker_messages.h" 9 #include "chrome/common/worker_messages.h"
10 #include "third_party/WebKit/WebKit/chromium/public/WebString.h" 10 #include "third_party/WebKit/WebKit/chromium/public/WebString.h"
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
144 ChildThread::current()->message_loop()->PostTask(FROM_HERE, 144 ChildThread::current()->message_loop()->PostTask(FROM_HERE,
145 NewRunnableMethod(this, &WebMessagePortChannelImpl::Entangle, channel)); 145 NewRunnableMethod(this, &WebMessagePortChannelImpl::Entangle, channel));
146 return; 146 return;
147 } 147 }
148 148
149 Send(new WorkerProcessHostMsg_Entangle( 149 Send(new WorkerProcessHostMsg_Entangle(
150 message_port_id_, channel->message_port_id())); 150 message_port_id_, channel->message_port_id()));
151 } 151 }
152 152
153 void WebMessagePortChannelImpl::QueueMessages() { 153 void WebMessagePortChannelImpl::QueueMessages() {
154 if (MessageLoop::current() != ChildThread::current()->message_loop()) {
155 ChildThread::current()->message_loop()->PostTask(FROM_HERE,
156 NewRunnableMethod(this, &WebMessagePortChannelImpl::QueueMessages));
157 return;
158 }
154 // This message port is being sent elsewhere (perhaps to another process). 159 // This message port is being sent elsewhere (perhaps to another process).
155 // The new endpoint needs to receive the queued messages, including ones that 160 // The new endpoint needs to receive the queued messages, including ones that
156 // could still be in-flight. So we tell the browser to queue messages, and it 161 // could still be in-flight. So we tell the browser to queue messages, and it
157 // sends us an ack, whose receipt we know means that no more messages are 162 // sends us an ack, whose receipt we know means that no more messages are
158 // in-flight. We then send the queued messages to the browser, which prepends 163 // in-flight. We then send the queued messages to the browser, which prepends
159 // them to the ones it queued and it sends them to the new endpoint. 164 // them to the ones it queued and it sends them to the new endpoint.
160 Send(new WorkerProcessHostMsg_QueueMessages(message_port_id_)); 165 Send(new WorkerProcessHostMsg_QueueMessages(message_port_id_));
161 166
162 // The process could potentially go away while we're still waiting for 167 // The process could potentially go away while we're still waiting for
163 // in-flight messages. Ensure it stays alive. 168 // in-flight messages. Ensure it stays alive.
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
223 } 228 }
224 229
225 Send(new WorkerProcessHostMsg_SendQueuedMessages( 230 Send(new WorkerProcessHostMsg_SendQueuedMessages(
226 message_port_id_, queued_messages)); 231 message_port_id_, queued_messages));
227 232
228 message_port_id_ = MSG_ROUTING_NONE; 233 message_port_id_ = MSG_ROUTING_NONE;
229 234
230 Release(); 235 Release();
231 ChildProcess::current()->ReleaseProcess(); 236 ChildProcess::current()->ReleaseProcess();
232 } 237 }
OLDNEW
« no previous file with comments | « no previous file | chrome/worker/worker_uitest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698