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

Unified Diff: chrome/worker/webworkerclient_proxy.cc

Issue 149575: Roll WebKit DEPS from 45738 to 45840. (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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/worker/webworkerclient_proxy.h ('k') | webkit/api/public/WebWorkerClient.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/worker/webworkerclient_proxy.cc
===================================================================
--- chrome/worker/webworkerclient_proxy.cc (revision 20552)
+++ chrome/worker/webworkerclient_proxy.cc (working copy)
@@ -93,12 +93,14 @@
void WebWorkerClientProxy::postConsoleMessageToWorkerObject(
int destination,
int source,
+ int type,
int level,
const WebString& message,
int line_number,
const WebString& source_url) {
Send(new WorkerHostMsg_PostConsoleMessageToWorkerObject(
- route_id_, destination, source, level,message, line_number, source_url));
+ route_id_, destination, source, type, level,
+ message, line_number, source_url));
}
void WebWorkerClientProxy::confirmMessageFromWorkerObject(
« no previous file with comments | « chrome/worker/webworkerclient_proxy.h ('k') | webkit/api/public/WebWorkerClient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698