Commit c435c03e authored by jam@chromium.org's avatar jam@chromium.org

Fix not resuming a request after a plugin calls NPN_URLRedirectResponse.

BUG=301510
TEST=http://www.dbtv.no/?vid=2750870727001 plays
R=scottmg@chromium.org

Review URL: https://codereview.chromium.org/63643003

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@233516 0039d316-1c4b-4281-b951-d872f2087c98
parent 1e5ecf9e
......@@ -145,7 +145,7 @@ void PluginURLFetcher::Cancel() {
void PluginURLFetcher::URLRedirectResponse(bool allow) {
if (allow) {
bridge_->SetDefersLoading(true);
bridge_->SetDefersLoading(false);
} else {
bridge_->Cancel();
plugin_stream_->DidFail(resource_id_); // That will delete |this|.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment