OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 "net/base/net_util.h" | 9 #include "net/base/net_util.h" |
10 #include "third_party/libjingle/source/talk/p2p/client/basicportallocator.h" | 10 #include "third_party/libjingle/source/talk/p2p/client/basicportallocator.h" |
11 #include "third_party/WebKit/Source/WebKit/chromium/public/WebURLLoaderClient.h" | 11 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebURLLoader
Client.h" |
12 #include "webkit/glue/p2p_transport.h" | 12 #include "webkit/glue/p2p_transport.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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 int relay_udp_port_; | 93 int relay_udp_port_; |
94 int relay_tcp_port_; | 94 int relay_tcp_port_; |
95 int relay_ssltcp_port_; | 95 int relay_ssltcp_port_; |
96 | 96 |
97 DISALLOW_COPY_AND_ASSIGN(P2PPortAllocatorSession); | 97 DISALLOW_COPY_AND_ASSIGN(P2PPortAllocatorSession); |
98 }; | 98 }; |
99 | 99 |
100 } // namespace content | 100 } // namespace content |
101 | 101 |
102 #endif // CONTENT_RENDERER_P2P_PORT_ALLOCATOR_H_ | 102 #endif // CONTENT_RENDERER_P2P_PORT_ALLOCATOR_H_ |
OLD | NEW |