OLD | NEW |
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 CONTENT_RENDERER_P2P_PORT_ALLOCATOR_H_ | 5 #ifndef CONTENT_RENDERER_P2P_PORT_ALLOCATOR_H_ |
6 #define CONTENT_RENDERER_P2P_PORT_ALLOCATOR_H_ | 6 #define CONTENT_RENDERER_P2P_PORT_ALLOCATOR_H_ |
7 | 7 |
8 #include "base/memory/ref_counted.h" | 8 #include "base/memory/ref_counted.h" |
9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
10 #include "net/base/net_util.h" | 10 #include "net/base/net_util.h" |
11 #include "third_party/WebKit/Source/Platform/chromium/public/WebURLLoaderClient.
h" | 11 #include "third_party/WebKit/public/platform/WebURLLoaderClient.h" |
12 #include "third_party/libjingle/source/talk/p2p/client/basicportallocator.h" | 12 #include "third_party/libjingle/source/talk/p2p/client/basicportallocator.h" |
13 | 13 |
14 namespace WebKit { | 14 namespace WebKit { |
15 class WebFrame; | 15 class WebFrame; |
16 class WebURLLoader; | 16 class WebURLLoader; |
17 } // namespace WebKit | 17 } // namespace WebKit |
18 | 18 |
19 namespace content { | 19 namespace content { |
20 | 20 |
21 class P2PHostAddressRequest; | 21 class P2PHostAddressRequest; |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
122 int relay_udp_port_; | 122 int relay_udp_port_; |
123 int relay_tcp_port_; | 123 int relay_tcp_port_; |
124 int relay_ssltcp_port_; | 124 int relay_ssltcp_port_; |
125 | 125 |
126 DISALLOW_COPY_AND_ASSIGN(P2PPortAllocatorSession); | 126 DISALLOW_COPY_AND_ASSIGN(P2PPortAllocatorSession); |
127 }; | 127 }; |
128 | 128 |
129 } // namespace content | 129 } // namespace content |
130 | 130 |
131 #endif // CONTENT_RENDERER_P2P_PORT_ALLOCATOR_H_ | 131 #endif // CONTENT_RENDERER_P2P_PORT_ALLOCATOR_H_ |
OLD | NEW |