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

Unified Diff: webkit/glue/webworkerclient_impl.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 | « webkit/glue/webworkerclient_impl.h ('k') | webkit/tools/layout_tests/test_expectations.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/webworkerclient_impl.cc
===================================================================
--- webkit/glue/webworkerclient_impl.cc (revision 20552)
+++ webkit/glue/webworkerclient_impl.cc (working copy)
@@ -221,6 +221,7 @@
void WebWorkerClientImpl::postConsoleMessageToWorkerObject(
int destination_id,
int source_id,
+ int message_type,
int message_level,
const WebString& message,
int line_number,
@@ -228,7 +229,7 @@
if (WTF::currentThread() != worker_thread_id_) {
script_execution_context_->postTask(
WebCore::createCallbackTask(&PostConsoleMessageToWorkerObjectTask, this,
- destination_id, source_id, message_level,
+ destination_id, source_id, message_type, message_level,
webkit_glue::WebStringToString(message),
line_number,
webkit_glue::WebStringToString(source_url)));
@@ -238,6 +239,7 @@
script_execution_context_->addMessage(
static_cast<WebCore::MessageDestination>(destination_id),
static_cast<WebCore::MessageSource>(source_id),
+ static_cast<WebCore::MessageType>(message_type),
static_cast<WebCore::MessageLevel>(message_level),
webkit_glue::WebStringToString(message),
line_number,
@@ -332,6 +334,7 @@
WebWorkerClientImpl* this_ptr,
int destination_id,
int source_id,
+ int message_type,
int message_level,
const WebCore::String& message,
int line_number,
@@ -339,6 +342,7 @@
this_ptr->script_execution_context_->addMessage(
static_cast<WebCore::MessageDestination>(destination_id),
static_cast<WebCore::MessageSource>(source_id),
+ static_cast<WebCore::MessageType>(message_type),
static_cast<WebCore::MessageLevel>(message_level),
message,
line_number,
« no previous file with comments | « webkit/glue/webworkerclient_impl.h ('k') | webkit/tools/layout_tests/test_expectations.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698