| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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_PEERCONNECTION_TRACKER_H_ | 5 #ifndef CONTENT_RENDERER_MEDIA_PEERCONNECTION_TRACKER_H_ |
| 6 #define CONTENT_RENDERER_MEDIA_PEERCONNECTION_TRACKER_H_ | 6 #define CONTENT_RENDERER_MEDIA_PEERCONNECTION_TRACKER_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 | 9 |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "content/public/renderer/render_process_observer.h" | 11 #include "content/public/renderer/render_process_observer.h" |
| 12 #include "third_party/WebKit/Source/Platform/chromium/public/WebMediaStream.h" | 12 #include "third_party/WebKit/public/platform/WebMediaStream.h" |
| 13 #include "third_party/WebKit/Source/Platform/chromium/public/WebRTCPeerConnectio
nHandlerClient.h" | 13 #include "third_party/WebKit/public/platform/WebRTCPeerConnectionHandlerClient.h
" |
| 14 #include "third_party/WebKit/Source/Platform/chromium/public/WebRTCSessionDescri
ption.h" | 14 #include "third_party/WebKit/public/platform/WebRTCSessionDescription.h" |
| 15 #include "third_party/libjingle/source/talk/app/webrtc/peerconnectioninterface.h
" | 15 #include "third_party/libjingle/source/talk/app/webrtc/peerconnectioninterface.h
" |
| 16 | 16 |
| 17 namespace WebKit { | 17 namespace WebKit { |
| 18 class WebFrame; | 18 class WebFrame; |
| 19 class WebRTCICECandidate; | 19 class WebRTCICECandidate; |
| 20 class WebString; | 20 class WebString; |
| 21 class WebRTCSessionDescription; | 21 class WebRTCSessionDescription; |
| 22 } // namespace WebKit | 22 } // namespace WebKit |
| 23 | 23 |
| 24 namespace webrtc { | 24 namespace webrtc { |
| (...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 166 | 166 |
| 167 // This keeps track of the next available local ID. | 167 // This keeps track of the next available local ID. |
| 168 int next_lid_; | 168 int next_lid_; |
| 169 | 169 |
| 170 DISALLOW_COPY_AND_ASSIGN(PeerConnectionTracker); | 170 DISALLOW_COPY_AND_ASSIGN(PeerConnectionTracker); |
| 171 }; | 171 }; |
| 172 | 172 |
| 173 } // namespace content | 173 } // namespace content |
| 174 | 174 |
| 175 #endif // CONTENT_RENDERER_MEDIA_PEERCONNECTION_TRACKER_H_ | 175 #endif // CONTENT_RENDERER_MEDIA_PEERCONNECTION_TRACKER_H_ |
| OLD | NEW |