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 <stddef.h> | 8 #include <stddef.h> |
9 | 9 |
10 #include <map> | 10 #include <map> |
11 #include <string> | 11 #include <string> |
12 | 12 |
13 #include "base/compiler_specific.h" | 13 #include "base/compiler_specific.h" |
14 #include "base/macros.h" | 14 #include "base/macros.h" |
15 #include "base/memory/ref_counted.h" | 15 #include "base/memory/ref_counted.h" |
| 16 #include "base/memory/scoped_ptr.h" |
16 #include "base/memory/weak_ptr.h" | 17 #include "base/memory/weak_ptr.h" |
17 #include "base/single_thread_task_runner.h" | 18 #include "base/single_thread_task_runner.h" |
18 #include "base/threading/thread.h" | 19 #include "base/threading/thread.h" |
19 #include "base/threading/thread_checker.h" | 20 #include "base/threading/thread_checker.h" |
20 #include "content/common/content_export.h" | 21 #include "content/common/content_export.h" |
21 #include "content/renderer/media/webrtc/media_stream_track_metrics.h" | 22 #include "content/renderer/media/webrtc/media_stream_track_metrics.h" |
22 #include "third_party/WebKit/public/platform/WebMediaStreamSource.h" | 23 #include "third_party/WebKit/public/platform/WebMediaStreamSource.h" |
23 #include "third_party/WebKit/public/platform/WebRTCPeerConnectionHandler.h" | 24 #include "third_party/WebKit/public/platform/WebRTCPeerConnectionHandler.h" |
24 #include "third_party/WebKit/public/platform/WebRTCStatsRequest.h" | 25 #include "third_party/WebKit/public/platform/WebRTCStatsRequest.h" |
25 #include "third_party/WebKit/public/platform/WebRTCStatsResponse.h" | 26 #include "third_party/WebKit/public/platform/WebRTCStatsResponse.h" |
(...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
277 bool ice_state_seen_[webrtc::PeerConnectionInterface::kIceConnectionMax] = {}; | 278 bool ice_state_seen_[webrtc::PeerConnectionInterface::kIceConnectionMax] = {}; |
278 | 279 |
279 base::WeakPtrFactory<RTCPeerConnectionHandler> weak_factory_; | 280 base::WeakPtrFactory<RTCPeerConnectionHandler> weak_factory_; |
280 | 281 |
281 DISALLOW_COPY_AND_ASSIGN(RTCPeerConnectionHandler); | 282 DISALLOW_COPY_AND_ASSIGN(RTCPeerConnectionHandler); |
282 }; | 283 }; |
283 | 284 |
284 } // namespace content | 285 } // namespace content |
285 | 286 |
286 #endif // CONTENT_RENDERER_MEDIA_RTC_PEER_CONNECTION_HANDLER_H_ | 287 #endif // CONTENT_RENDERER_MEDIA_RTC_PEER_CONNECTION_HANDLER_H_ |
OLD | NEW |