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

Side by Side Diff: content/browser/renderer_host/render_process_host_impl.h

Issue 2973643002: Cache the override for WebRTC's AEC3 in RenderProcessHostImpl (Closed)
Patch Set: Add a TODO Created 3 years, 5 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
« no previous file with comments | « no previous file | content/browser/renderer_host/render_process_host_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_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
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
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_
OLDNEW
« no previous file with comments | « no previous file | content/browser/renderer_host/render_process_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698