diff options
author | atwilson@chromium.org <atwilson@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-22 20:34:25 +0000 |
---|---|---|
committer | atwilson@chromium.org <atwilson@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-22 20:34:25 +0000 |
commit | 100a0095898381f0efb3d441a7f533ed96923042 (patch) | |
tree | e9dd922e4e4a20f2dca067e794e5b489b9bf2d2d /chrome/renderer/websharedworker_proxy.cc | |
parent | 6d2721fbdbddd4d35616d9b7774945a3cf42375b (diff) | |
download | chromium_src-100a0095898381f0efb3d441a7f533ed96923042.zip chromium_src-100a0095898381f0efb3d441a7f533ed96923042.tar.gz chromium_src-100a0095898381f0efb3d441a7f533ed96923042.tar.bz2 |
Refactored code to allow associating workers with multiple renderers.
SharedWorkers now gracefully handle http auth requests after their
initial window has closed.
BUG=27660
TEST=WorkerHttpAuth,SharedWorkerHttpAuth uitests
Review URL: http://codereview.chromium.org/509016
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@36888 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/renderer/websharedworker_proxy.cc')
-rw-r--r-- | chrome/renderer/websharedworker_proxy.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/renderer/websharedworker_proxy.cc b/chrome/renderer/websharedworker_proxy.cc index 1d5425f..c6741c1 100644 --- a/chrome/renderer/websharedworker_proxy.cc +++ b/chrome/renderer/websharedworker_proxy.cc @@ -10,9 +10,10 @@ #include "third_party/WebKit/WebKit/chromium/public/WebURL.h" WebSharedWorkerProxy::WebSharedWorkerProxy(ChildThread* child_thread, + unsigned long long document_id, int route_id, int render_view_route_id) - : WebWorkerBase(child_thread, route_id, render_view_route_id), + : WebWorkerBase(child_thread, document_id, route_id, render_view_route_id), connect_listener_(NULL) { } |