| Index: remoting/protocol/chromium_port_allocator.cc
|
| diff --git a/remoting/protocol/chromium_port_allocator.cc b/remoting/protocol/chromium_port_allocator.cc
|
| index fb8a3e02d5c40ed6077c5205f1025f035e3c489a..ffe675667a558d1d96a5c6d987e754d83bd49a0b 100644
|
| --- a/remoting/protocol/chromium_port_allocator.cc
|
| +++ b/remoting/protocol/chromium_port_allocator.cc
|
| @@ -97,8 +97,8 @@ void ChromiumPortAllocatorSession::SendSessionRequest(
|
| int port) {
|
| GURL url("https://" + host + ":" + base::IntToString(port) +
|
| GetSessionRequestUrl() + "&sn=1");
|
| - scoped_ptr<net::URLFetcher> url_fetcher(
|
| - net::URLFetcher::Create(url, net::URLFetcher::GET, this));
|
| + scoped_ptr<net::URLFetcher> url_fetcher =
|
| + net::URLFetcher::Create(url, net::URLFetcher::GET, this);
|
| url_fetcher->SetRequestContext(url_context_.get());
|
| url_fetcher->AddExtraRequestHeader("X-Talk-Google-Relay-Auth: " +
|
| relay_token());
|
|
|