| 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_MEDIA_RTC_PEER_CONNECTION_HANDLER_H_ | 5 #ifndef CONTENT_RENDERER_MEDIA_RTC_PEER_CONNECTION_HANDLER_H_ |
| 6 #define CONTENT_RENDERER_MEDIA_RTC_PEER_CONNECTION_HANDLER_H_ | 6 #define CONTENT_RENDERER_MEDIA_RTC_PEER_CONNECTION_HANDLER_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
| 10 #include "content/common/content_export.h" | 10 #include "content/common/content_export.h" |
| 11 #include "content/renderer/media/peer_connection_handler_base.h" | 11 #include "content/renderer/media/peer_connection_handler_base.h" |
| 12 #include "third_party/WebKit/Source/Platform/chromium/public/WebRTCPeerConnectio
nHandler.h" | 12 #include "third_party/WebKit/public/platform/WebRTCPeerConnectionHandler.h" |
| 13 #include "third_party/WebKit/Source/Platform/chromium/public/WebRTCStatsRequest.
h" | 13 #include "third_party/WebKit/public/platform/WebRTCStatsRequest.h" |
| 14 #include "third_party/WebKit/Source/Platform/chromium/public/WebRTCStatsResponse
.h" | 14 #include "third_party/WebKit/public/platform/WebRTCStatsResponse.h" |
| 15 | 15 |
| 16 namespace WebKit { | 16 namespace WebKit { |
| 17 class WebFrame; | 17 class WebFrame; |
| 18 class WebRTCDataChannelHandler; | 18 class WebRTCDataChannelHandler; |
| 19 } | 19 } |
| 20 | 20 |
| 21 namespace content { | 21 namespace content { |
| 22 | 22 |
| 23 class PeerConnectionTracker; | 23 class PeerConnectionTracker; |
| 24 | 24 |
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 WebKit::WebFrame* frame_; | 171 WebKit::WebFrame* frame_; |
| 172 | 172 |
| 173 PeerConnectionTracker* peer_connection_tracker_; | 173 PeerConnectionTracker* peer_connection_tracker_; |
| 174 | 174 |
| 175 DISALLOW_COPY_AND_ASSIGN(RTCPeerConnectionHandler); | 175 DISALLOW_COPY_AND_ASSIGN(RTCPeerConnectionHandler); |
| 176 }; | 176 }; |
| 177 | 177 |
| 178 } // namespace content | 178 } // namespace content |
| 179 | 179 |
| 180 #endif // CONTENT_RENDERER_MEDIA_RTC_PEER_CONNECTION_HANDLER_H_ | 180 #endif // CONTENT_RENDERER_MEDIA_RTC_PEER_CONNECTION_HANDLER_H_ |
| OLD | NEW |