| 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_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ |
| 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 632 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 643 BrowserThread::DeleteOnIOThread> | 643 BrowserThread::DeleteOnIOThread> |
| 644 audio_output_stream_factory_context_; | 644 audio_output_stream_factory_context_; |
| 645 | 645 |
| 646 scoped_refptr<AudioInputRendererHost> audio_input_renderer_host_; | 646 scoped_refptr<AudioInputRendererHost> audio_input_renderer_host_; |
| 647 | 647 |
| 648 #if BUILDFLAG(ENABLE_WEBRTC) | 648 #if BUILDFLAG(ENABLE_WEBRTC) |
| 649 scoped_refptr<P2PSocketDispatcherHost> p2p_socket_dispatcher_host_; | 649 scoped_refptr<P2PSocketDispatcherHost> p2p_socket_dispatcher_host_; |
| 650 | 650 |
| 651 // Must be accessed on UI thread. | 651 // Must be accessed on UI thread. |
| 652 std::vector<int> aec_dump_consumers_; | 652 std::vector<int> aec_dump_consumers_; |
| 653 base::Optional<bool> override_aec3_; |
| 653 | 654 |
| 654 WebRtcStopRtpDumpCallback stop_rtp_dump_callback_; | 655 WebRtcStopRtpDumpCallback stop_rtp_dump_callback_; |
| 655 | 656 |
| 656 WebRTCEventLogHost webrtc_eventlog_host_; | 657 WebRTCEventLogHost webrtc_eventlog_host_; |
| 657 #endif | 658 #endif |
| 658 | 659 |
| 659 // Forwards messages between WebRTCInternals in the browser process | 660 // Forwards messages between WebRTCInternals in the browser process |
| 660 // and PeerConnectionTracker in the renderer process. | 661 // and PeerConnectionTracker in the renderer process. |
| 661 // It holds a raw pointer to webrtc_eventlog_host_, and therefore should be | 662 // It holds a raw pointer to webrtc_eventlog_host_, and therefore should be |
| 662 // defined below it so it is destructed first. | 663 // defined below it so it is destructed first. |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 713 FrameSinkProviderImpl frame_sink_provider_; | 714 FrameSinkProviderImpl frame_sink_provider_; |
| 714 | 715 |
| 715 base::WeakPtrFactory<RenderProcessHostImpl> weak_factory_; | 716 base::WeakPtrFactory<RenderProcessHostImpl> weak_factory_; |
| 716 | 717 |
| 717 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); | 718 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); |
| 718 }; | 719 }; |
| 719 | 720 |
| 720 } // namespace content | 721 } // namespace content |
| 721 | 722 |
| 722 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ | 723 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ |
| OLD | NEW |