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

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

Issue 1871533002: Change WebRTC log callback registration in browser process. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Code review (olka) 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 (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 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 bool FastShutdownStarted() const override; 143 bool FastShutdownStarted() const override;
144 base::TimeDelta GetChildProcessIdleTime() const override; 144 base::TimeDelta GetChildProcessIdleTime() const override;
145 void FilterURL(bool empty_allowed, GURL* url) override; 145 void FilterURL(bool empty_allowed, GURL* url) override;
146 #if defined(ENABLE_WEBRTC) 146 #if defined(ENABLE_WEBRTC)
147 void EnableAudioDebugRecordings(const base::FilePath& file) override; 147 void EnableAudioDebugRecordings(const base::FilePath& file) override;
148 void DisableAudioDebugRecordings() override; 148 void DisableAudioDebugRecordings() override;
149 void EnableEventLogRecordings(const base::FilePath& file) override; 149 void EnableEventLogRecordings(const base::FilePath& file) override;
150 void DisableEventLogRecordings() override; 150 void DisableEventLogRecordings() override;
151 void SetWebRtcLogMessageCallback( 151 void SetWebRtcLogMessageCallback(
152 base::Callback<void(const std::string&)> callback) override; 152 base::Callback<void(const std::string&)> callback) override;
153 void ClearWebRtcLogMessageCallback() override;
153 WebRtcStopRtpDumpCallback StartRtpDump( 154 WebRtcStopRtpDumpCallback StartRtpDump(
154 bool incoming, 155 bool incoming,
155 bool outgoing, 156 bool outgoing,
156 const WebRtcRtpPacketCallback& packet_callback) override; 157 const WebRtcRtpPacketCallback& packet_callback) override;
157 #endif 158 #endif
158 void ResumeDeferredNavigation(const GlobalRequestID& request_id) override; 159 void ResumeDeferredNavigation(const GlobalRequestID& request_id) override;
159 void NotifyTimezoneChange(const std::string& timezone) override; 160 void NotifyTimezoneChange(const std::string& timezone) override;
160 ServiceRegistry* GetServiceRegistry() override; 161 ServiceRegistry* GetServiceRegistry() override;
161 const base::TimeTicks& GetInitTimeForNavigationMetrics() const override; 162 const base::TimeTicks& GetInitTimeForNavigationMetrics() const override;
162 bool SubscribeUniformEnabled() const override; 163 bool SubscribeUniformEnabled() const override;
(...skipping 362 matching lines...) Expand 10 before | Expand all | Expand 10 after
525 mojo::ScopedMessagePipeHandle in_process_renderer_handle_; 526 mojo::ScopedMessagePipeHandle in_process_renderer_handle_;
526 527
527 base::WeakPtrFactory<RenderProcessHostImpl> weak_factory_; 528 base::WeakPtrFactory<RenderProcessHostImpl> weak_factory_;
528 529
529 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); 530 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl);
530 }; 531 };
531 532
532 } // namespace content 533 } // namespace content
533 534
534 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_ 535 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_PROCESS_HOST_IMPL_H_
OLDNEW
« no previous file with comments | « content/browser/renderer_host/media/media_stream_manager.cc ('k') | content/browser/renderer_host/render_process_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698