summaryrefslogtreecommitdiffstats
path: root/chrome/renderer/websharedworker_proxy.cc
diff options
context:
space:
mode:
authorpkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-01-23 00:25:04 +0000
committerpkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-01-23 00:25:04 +0000
commitcb5b58c021e7fbcf3f377697870401cdd159ff6d (patch)
tree48e4845d5c8f984765a869f085eefd1d2fc5d2ed /chrome/renderer/websharedworker_proxy.cc
parent4225cbbd34cb72a87dc24be6e87537ba8c1b8505 (diff)
downloadchromium_src-cb5b58c021e7fbcf3f377697870401cdd159ff6d.zip
chromium_src-cb5b58c021e7fbcf3f377697870401cdd159ff6d.tar.gz
chromium_src-cb5b58c021e7fbcf3f377697870401cdd159ff6d.tar.bz2
Revert 36888 - 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 TBR=atwilson@chromium.org Review URL: http://codereview.chromium.org/549138 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@36929 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/renderer/websharedworker_proxy.cc')
-rw-r--r--chrome/renderer/websharedworker_proxy.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/chrome/renderer/websharedworker_proxy.cc b/chrome/renderer/websharedworker_proxy.cc
index c6741c1..1d5425f 100644
--- a/chrome/renderer/websharedworker_proxy.cc
+++ b/chrome/renderer/websharedworker_proxy.cc
@@ -10,10 +10,9 @@
#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, document_id, route_id, render_view_route_id),
+ : WebWorkerBase(child_thread, route_id, render_view_route_id),
connect_listener_(NULL) {
}