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

Side by Side Diff: remoting/host/host_port_allocator.h

Issue 10637008: Remove UrlFetcher from remoting and use the one in net instead. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 8 years, 6 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #ifndef REMOTING_HOST_HOST_PORT_ALLOCATOR_H_ 5 #ifndef REMOTING_HOST_HOST_PORT_ALLOCATOR_H_
6 #define REMOTING_HOST_HOST_PORT_ALLOCATOR_H_ 6 #define REMOTING_HOST_HOST_PORT_ALLOCATOR_H_
7 7
8 #include <set> 8 #include <set>
9 9
10 #include "base/memory/ref_counted.h"
10 #include "base/memory/scoped_ptr.h" 11 #include "base/memory/scoped_ptr.h"
11 #include "remoting/host/url_fetcher.h"
12 #include "third_party/libjingle/source/talk/p2p/client/httpportallocator.h" 12 #include "third_party/libjingle/source/talk/p2p/client/httpportallocator.h"
13 13
14 namespace net { 14 namespace net {
15 class URLRequestContextGetter; 15 class URLRequestContextGetter;
16 } // namespace net 16 } // namespace net
17 17
18 namespace remoting { 18 namespace remoting {
19 19
20 struct NetworkSettings; 20 struct NetworkSettings;
21 21
(...skipping 25 matching lines...) Expand all
47 scoped_refptr<net::URLRequestContextGetter> url_context_; 47 scoped_refptr<net::URLRequestContextGetter> url_context_;
48 scoped_ptr<talk_base::NetworkManager> network_manager_; 48 scoped_ptr<talk_base::NetworkManager> network_manager_;
49 scoped_ptr<talk_base::PacketSocketFactory> socket_factory_; 49 scoped_ptr<talk_base::PacketSocketFactory> socket_factory_;
50 50
51 DISALLOW_COPY_AND_ASSIGN(HostPortAllocator); 51 DISALLOW_COPY_AND_ASSIGN(HostPortAllocator);
52 }; 52 };
53 53
54 } // namespace remoting 54 } // namespace remoting
55 55
56 #endif // REMOTING_HOST_HOST_PORT_ALLOCATOR_H_ 56 #endif // REMOTING_HOST_HOST_PORT_ALLOCATOR_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698