OLD | NEW |
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 Loading... |
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_ |
OLD | NEW |