| Index: chrome/browser/net/connection_tester.cc
|
| diff --git a/chrome/browser/net/connection_tester.cc b/chrome/browser/net/connection_tester.cc
|
| index 7a06aae2c96c11d306cce57d7730f0d727641480..10b3ba5de4e4d49c8f4874b9dc15b2266777820d 100644
|
| --- a/chrome/browser/net/connection_tester.cc
|
| +++ b/chrome/browser/net/connection_tester.cc
|
| @@ -18,6 +18,7 @@
|
| #include "net/base/io_buffer.h"
|
| #include "net/base/net_errors.h"
|
| #include "net/base/net_util.h"
|
| +#include "net/base/request_priority.h"
|
| #include "net/cert/cert_verifier.h"
|
| #include "net/cookies/cookie_monster.h"
|
| #include "net/dns/host_resolver.h"
|
| @@ -409,7 +410,8 @@ void ConnectionTester::TestRunner::ProxyConfigServiceCreated(
|
| return;
|
| }
|
| // Fetch a request using the experimental context.
|
| - request_.reset(request_context_->CreateRequest(experiment.url, this));
|
| + request_.reset(request_context_->CreateRequest(
|
| + experiment.url, net::DEFAULT_PRIORITY, this));
|
| request_->Start();
|
| }
|
|
|
|
|