| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 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 CHROME_BROWSER_MEDIA_WEBRTC_LOGGING_HANDLER_HOST_H_ | 5 #ifndef CHROME_BROWSER_MEDIA_WEBRTC_WEBRTC_LOGGING_HANDLER_HOST_H_ |
| 6 #define CHROME_BROWSER_MEDIA_WEBRTC_LOGGING_HANDLER_HOST_H_ | 6 #define CHROME_BROWSER_MEDIA_WEBRTC_WEBRTC_LOGGING_HANDLER_HOST_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| 11 #include <map> | 11 #include <map> |
| 12 #include <string> | 12 #include <string> |
| 13 #include <vector> | 13 #include <vector> |
| 14 | 14 |
| 15 #include "base/macros.h" | 15 #include "base/macros.h" |
| 16 #include "base/memory/shared_memory.h" | 16 #include "base/memory/shared_memory.h" |
| 17 #include "build/build_config.h" | 17 #include "build/build_config.h" |
| 18 #include "chrome/browser/media/rtp_dump_type.h" | 18 #include "chrome/browser/media/webrtc/rtp_dump_type.h" |
| 19 #include "chrome/browser/media/webrtc_rtp_dump_handler.h" | 19 #include "chrome/browser/media/webrtc/webrtc_rtp_dump_handler.h" |
| 20 #include "chrome/common/media/webrtc_logging_message_data.h" | 20 #include "chrome/common/media/webrtc_logging_message_data.h" |
| 21 #include "chrome/common/partial_circular_buffer.h" | 21 #include "chrome/common/partial_circular_buffer.h" |
| 22 #include "content/public/browser/browser_message_filter.h" | 22 #include "content/public/browser/browser_message_filter.h" |
| 23 #include "content/public/browser/render_process_host.h" | 23 #include "content/public/browser/render_process_host.h" |
| 24 #include "net/base/network_interfaces.h" | 24 #include "net/base/network_interfaces.h" |
| 25 | 25 |
| 26 namespace net { | 26 namespace net { |
| 27 class URLRequestContextGetter; | 27 class URLRequestContextGetter; |
| 28 } // namespace net | 28 } // namespace net |
| 29 | 29 |
| (...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 288 // A pointer to the log uploader that's shared for all profiles. | 288 // A pointer to the log uploader that's shared for all profiles. |
| 289 // Ownership lies with the browser process. | 289 // Ownership lies with the browser process. |
| 290 WebRtcLogUploader* const log_uploader_; | 290 WebRtcLogUploader* const log_uploader_; |
| 291 | 291 |
| 292 // The render process ID this object belongs to. | 292 // The render process ID this object belongs to. |
| 293 int render_process_id_; | 293 int render_process_id_; |
| 294 | 294 |
| 295 DISALLOW_COPY_AND_ASSIGN(WebRtcLoggingHandlerHost); | 295 DISALLOW_COPY_AND_ASSIGN(WebRtcLoggingHandlerHost); |
| 296 }; | 296 }; |
| 297 | 297 |
| 298 #endif // CHROME_BROWSER_MEDIA_WEBRTC_LOGGING_HANDLER_HOST_H_ | 298 #endif // CHROME_BROWSER_MEDIA_WEBRTC_WEBRTC_LOGGING_HANDLER_HOST_H_ |
| OLD | NEW |