Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(73)

Side by Side Diff: remoting/protocol/chromium_port_allocator.cc

Issue 1542203002: Switch to standard integer types in remoting/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@int-remoting-host
Patch Set: Created 4 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "remoting/protocol/chromium_port_allocator.h" 5 #include "remoting/protocol/chromium_port_allocator.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/macros.h"
8 #include "base/stl_util.h" 9 #include "base/stl_util.h"
9 #include "base/strings/string_number_conversions.h" 10 #include "base/strings/string_number_conversions.h"
10 #include "net/http/http_status_code.h" 11 #include "net/http/http_status_code.h"
11 #include "net/url_request/url_fetcher.h" 12 #include "net/url_request/url_fetcher.h"
12 #include "net/url_request/url_fetcher_delegate.h" 13 #include "net/url_request/url_fetcher_delegate.h"
13 #include "net/url_request/url_request_context_getter.h" 14 #include "net/url_request/url_request_context_getter.h"
14 #include "remoting/protocol/chromium_socket_factory.h" 15 #include "remoting/protocol/chromium_socket_factory.h"
15 #include "url/gurl.h" 16 #include "url/gurl.h"
16 17
17 namespace remoting { 18 namespace remoting {
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 169
169 ChromiumPortAllocatorFactory::~ChromiumPortAllocatorFactory() {} 170 ChromiumPortAllocatorFactory::~ChromiumPortAllocatorFactory() {}
170 171
171 scoped_ptr<cricket::HttpPortAllocatorBase> 172 scoped_ptr<cricket::HttpPortAllocatorBase>
172 ChromiumPortAllocatorFactory::CreatePortAllocator() { 173 ChromiumPortAllocatorFactory::CreatePortAllocator() {
173 return ChromiumPortAllocator::Create(url_request_context_getter_); 174 return ChromiumPortAllocator::Create(url_request_context_getter_);
174 } 175 }
175 176
176 } // namespace protocol 177 } // namespace protocol
177 } // namespace remoting 178 } // namespace remoting
OLDNEW
« no previous file with comments | « remoting/protocol/chromium_port_allocator.h ('k') | remoting/protocol/chromium_socket_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698