| Index: chrome/browser/plugins/plugin_installer.cc
|
| diff --git a/chrome/browser/plugins/plugin_installer.cc b/chrome/browser/plugins/plugin_installer.cc
|
| index 6801d13b2454348f41ec0490cc52aeb1ce23ee9f..d9f454658ae897c25c3bfc2f79394eff77766298 100644
|
| --- a/chrome/browser/plugins/plugin_installer.cc
|
| +++ b/chrome/browser/plugins/plugin_installer.cc
|
| @@ -24,6 +24,7 @@
|
| #include "content/public/browser/resource_dispatcher_host.h"
|
| #include "content/public/browser/web_contents.h"
|
| #include "content/public/common/referrer.h"
|
| +#include "net/base/request_priority.h"
|
| #include "net/url_request/url_request.h"
|
| #include "net/url_request/url_request_context.h"
|
|
|
| @@ -44,7 +45,8 @@ void BeginDownload(
|
|
|
| ResourceDispatcherHost* rdh = ResourceDispatcherHost::Get();
|
| scoped_ptr<net::URLRequest> request(
|
| - resource_context->GetRequestContext()->CreateRequest(url, NULL));
|
| + resource_context->GetRequestContext()->CreateRequest(
|
| + url, net::DEFAULT_PRIORITY, NULL));
|
| net::Error error = rdh->BeginDownload(
|
| request.Pass(),
|
| content::Referrer(),
|
|
|