diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-10 19:16:51 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-10 19:16:51 +0000 |
commit | 4a319569b07deb0f0156dec3fea1604b23a20071 (patch) | |
tree | 8f92d2b2dec2b29ab37a6afb4aa9094ede870926 /chrome/renderer/webworker_proxy.cc | |
parent | 4a8d3279cc9f2149c90d36550a55d01a264ba0a3 (diff) | |
download | chromium_src-4a319569b07deb0f0156dec3fea1604b23a20071.zip chromium_src-4a319569b07deb0f0156dec3fea1604b23a20071.tar.gz chromium_src-4a319569b07deb0f0156dec3fea1604b23a20071.tar.bz2 |
Fix build breaks after webkit merge.
Review URL: http://codereview.chromium.org/42004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11361 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/renderer/webworker_proxy.cc')
-rw-r--r-- | chrome/renderer/webworker_proxy.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/renderer/webworker_proxy.cc b/chrome/renderer/webworker_proxy.cc index 0da55f3..1dbce20 100644 --- a/chrome/renderer/webworker_proxy.cc +++ b/chrome/renderer/webworker_proxy.cc @@ -19,6 +19,7 @@ WebWorkerProxy::~WebWorkerProxy() { void WebWorkerProxy::StartWorkerContext( const GURL& script_url, const string16& user_agent, + const string16& encoding, const string16& source_code) { RenderThread::current()->Send( new ViewHostMsg_CreateDedicatedWorker(script_url, &route_id_)); @@ -27,7 +28,7 @@ void WebWorkerProxy::StartWorkerContext( RenderThread::current()->AddRoute(route_id_, this); Send(new WorkerMsg_StartWorkerContext( - route_id_, script_url, user_agent, source_code)); + route_id_, script_url, user_agent, encoding, source_code)); for (size_t i = 0; i < queued_messages_.size(); ++i) { queued_messages_[i]->set_routing_id(route_id_); |