Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(312)

Side by Side Diff: content/renderer/media/rtc_peer_connection_handler.h

Issue 1852953002: Fix a bunch of IWYU violators that don't include scoped_ptr.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address comment Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « content/renderer/media/renderer_webmediaplayer_delegate.h ('k') | content/renderer/media/video_track_recorder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698