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

Side by Side Diff: chrome/browser/media/webrtc_rtp_dump_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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 CHROME_BROWSER_MEDIA_WEBRTC_RTP_DUMP_HANDLER_H_ 5 #ifndef CHROME_BROWSER_MEDIA_WEBRTC_RTP_DUMP_HANDLER_H_
6 #define CHROME_BROWSER_MEDIA_WEBRTC_RTP_DUMP_HANDLER_H_ 6 #define CHROME_BROWSER_MEDIA_WEBRTC_RTP_DUMP_HANDLER_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
11 #include "base/callback.h" 11 #include "base/callback.h"
12 #include "base/files/file_path.h" 12 #include "base/files/file_path.h"
13 #include "base/macros.h" 13 #include "base/macros.h"
14 #include "base/memory/scoped_ptr.h"
14 #include "base/memory/weak_ptr.h" 15 #include "base/memory/weak_ptr.h"
15 #include "chrome/browser/media/rtp_dump_type.h" 16 #include "chrome/browser/media/rtp_dump_type.h"
16 17
17 class WebRtcRtpDumpWriter; 18 class WebRtcRtpDumpWriter;
18 19
19 // WebRtcRtpDumpHandler handles operations regarding the WebRTC RTP dump: 20 // WebRtcRtpDumpHandler handles operations regarding the WebRTC RTP dump:
20 // - Starts or stops the RTP dumping on behalf of the client. 21 // - Starts or stops the RTP dumping on behalf of the client.
21 // - Stops the RTP dumping when the max dump file size is reached. 22 // - Stops the RTP dumping when the max dump file size is reached.
22 // - Writes the dump file. 23 // - Writes the dump file.
23 // - Provides the dump file to the client code to be uploaded when 24 // - Provides the dump file to the client code to be uploaded when
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 126
126 // The object used to create and write the dump file. 127 // The object used to create and write the dump file.
127 scoped_ptr<WebRtcRtpDumpWriter> dump_writer_; 128 scoped_ptr<WebRtcRtpDumpWriter> dump_writer_;
128 129
129 base::WeakPtrFactory<WebRtcRtpDumpHandler> weak_ptr_factory_; 130 base::WeakPtrFactory<WebRtcRtpDumpHandler> weak_ptr_factory_;
130 131
131 DISALLOW_COPY_AND_ASSIGN(WebRtcRtpDumpHandler); 132 DISALLOW_COPY_AND_ASSIGN(WebRtcRtpDumpHandler);
132 }; 133 };
133 134
134 #endif // CHROME_BROWSER_MEDIA_WEBRTC_RTP_DUMP_HANDLER_H_ 135 #endif // CHROME_BROWSER_MEDIA_WEBRTC_RTP_DUMP_HANDLER_H_
OLDNEW
« no previous file with comments | « chrome/browser/importer/firefox_profile_lock_unittest.cc ('k') | chrome/browser/media/webrtc_rtp_dump_writer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698