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

Side by Side Diff: chrome/worker/webworkerclient_proxy.cc

Issue 149775: Remove 6- and 7-parameter IPC message macros. Replace with a struct that pack... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 5 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 | « chrome/renderer/webworker_proxy.cc ('k') | no next file » | 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/worker/webworkerclient_proxy.h" 5 #include "chrome/worker/webworkerclient_proxy.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "chrome/common/child_process.h" 8 #include "chrome/common/child_process.h"
9 #include "chrome/common/chrome_switches.h" 9 #include "chrome/common/chrome_switches.h"
10 #include "chrome/common/ipc_logging.h" 10 #include "chrome/common/ipc_logging.h"
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 } 91 }
92 92
93 void WebWorkerClientProxy::postConsoleMessageToWorkerObject( 93 void WebWorkerClientProxy::postConsoleMessageToWorkerObject(
94 int destination, 94 int destination,
95 int source, 95 int source,
96 int type, 96 int type,
97 int level, 97 int level,
98 const WebString& message, 98 const WebString& message,
99 int line_number, 99 int line_number,
100 const WebString& source_url) { 100 const WebString& source_url) {
101 Send(new WorkerHostMsg_PostConsoleMessageToWorkerObject( 101 WorkerHostMsg_PostConsoleMessageToWorkerObject_Params params;
102 route_id_, destination, source, type, level, 102 params.destination_identifier = destination;
103 message, line_number, source_url)); 103 params.source_identifier = source;
104 params.message_type = type;
105 params.message_level = level;
106 params.message = message;
107 params.line_number = line_number;
108 params.source_url = source_url;
109 Send(new WorkerHostMsg_PostConsoleMessageToWorkerObject(route_id_, params));
104 } 110 }
105 111
106 void WebWorkerClientProxy::confirmMessageFromWorkerObject( 112 void WebWorkerClientProxy::confirmMessageFromWorkerObject(
107 bool has_pending_activity) { 113 bool has_pending_activity) {
108 Send(new WorkerHostMsg_ConfirmMessageFromWorkerObject( 114 Send(new WorkerHostMsg_ConfirmMessageFromWorkerObject(
109 route_id_, has_pending_activity)); 115 route_id_, has_pending_activity));
110 } 116 }
111 117
112 void WebWorkerClientProxy::reportPendingActivity(bool has_pending_activity) { 118 void WebWorkerClientProxy::reportPendingActivity(bool has_pending_activity) {
113 Send(new WorkerHostMsg_ReportPendingActivity( 119 Send(new WorkerHostMsg_ReportPendingActivity(
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 switches::kWebWorkerShareProcesses)) { 159 switches::kWebWorkerShareProcesses)) {
154 // Can't kill the process since there could be workers from other 160 // Can't kill the process since there could be workers from other
155 // renderer process. 161 // renderer process.
156 NOTIMPLEMENTED(); 162 NOTIMPLEMENTED();
157 return; 163 return;
158 } 164 }
159 165
160 MessageLoop::current()->PostDelayedTask(FROM_HERE, 166 MessageLoop::current()->PostDelayedTask(FROM_HERE,
161 new KillProcessTask(this), kMaxTimeForRunawayWorkerMs); 167 new KillProcessTask(this), kMaxTimeForRunawayWorkerMs);
162 } 168 }
OLDNEW
« no previous file with comments | « chrome/renderer/webworker_proxy.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698