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

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

Issue 264793017: Implements RTP header dumping. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 7 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_BROWSER_RENDER_PROCESS_HOST_IMPL_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_IMPL_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_IMPL_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_IMPL_H_
7 7
8 #include <map> 8 #include <map>
9 #include <queue> 9 #include <queue>
10 #include <string> 10 #include <string>
(...skipping 21 matching lines...) Expand all
32 namespace gfx { 32 namespace gfx {
33 class Size; 33 class Size;
34 } 34 }
35 35
36 namespace content { 36 namespace content {
37 class AudioRendererHost; 37 class AudioRendererHost;
38 class BrowserDemuxerAndroid; 38 class BrowserDemuxerAndroid;
39 class GpuMessageFilter; 39 class GpuMessageFilter;
40 class MessagePortMessageFilter; 40 class MessagePortMessageFilter;
41 class MojoApplicationHost; 41 class MojoApplicationHost;
42 #if defined(ENABLE_WEBRTC)
43 class P2PSocketDispatcherHost;
44 #endif
42 class PeerConnectionTrackerHost; 45 class PeerConnectionTrackerHost;
43 class RendererMainThread; 46 class RendererMainThread;
44 class RenderProcessHostMojoImpl; 47 class RenderProcessHostMojoImpl;
45 class RenderWidgetHelper; 48 class RenderWidgetHelper;
46 class RenderWidgetHost; 49 class RenderWidgetHost;
47 class RenderWidgetHostImpl; 50 class RenderWidgetHostImpl;
48 class RenderWidgetHostViewFrameSubscriber; 51 class RenderWidgetHostViewFrameSubscriber;
49 class ScreenOrientationDispatcherHost; 52 class ScreenOrientationDispatcherHost;
50 class StoragePartition; 53 class StoragePartition;
51 class StoragePartitionImpl; 54 class StoragePartitionImpl;
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 virtual bool FastShutdownForPageCount(size_t count) OVERRIDE; 122 virtual bool FastShutdownForPageCount(size_t count) OVERRIDE;
120 virtual bool FastShutdownStarted() const OVERRIDE; 123 virtual bool FastShutdownStarted() const OVERRIDE;
121 virtual base::TimeDelta GetChildProcessIdleTime() const OVERRIDE; 124 virtual base::TimeDelta GetChildProcessIdleTime() const OVERRIDE;
122 virtual void ResumeRequestsForView(int route_id) OVERRIDE; 125 virtual void ResumeRequestsForView(int route_id) OVERRIDE;
123 virtual void FilterURL(bool empty_allowed, GURL* url) OVERRIDE; 126 virtual void FilterURL(bool empty_allowed, GURL* url) OVERRIDE;
124 #if defined(ENABLE_WEBRTC) 127 #if defined(ENABLE_WEBRTC)
125 virtual void EnableAecDump(const base::FilePath& file) OVERRIDE; 128 virtual void EnableAecDump(const base::FilePath& file) OVERRIDE;
126 virtual void DisableAecDump() OVERRIDE; 129 virtual void DisableAecDump() OVERRIDE;
127 virtual void SetWebRtcLogMessageCallback( 130 virtual void SetWebRtcLogMessageCallback(
128 base::Callback<void(const std::string&)> callback) OVERRIDE; 131 base::Callback<void(const std::string&)> callback) OVERRIDE;
132 virtual void SetWebRtcRtpPacketCallback(
133 const WebRtcRtpPacketCallback& callback) OVERRIDE;
134 virtual void StartRtpDump(bool incoming, bool outgoing) OVERRIDE;
135 virtual void StopRtpDump(bool incoming, bool outgoing) OVERRIDE;
129 #endif 136 #endif
130 virtual void ResumeDeferredNavigation(const GlobalRequestID& request_id) 137 virtual void ResumeDeferredNavigation(const GlobalRequestID& request_id)
131 OVERRIDE; 138 OVERRIDE;
132 virtual void NotifyTimezoneChange() OVERRIDE; 139 virtual void NotifyTimezoneChange() OVERRIDE;
133 140
134 // IPC::Sender via RenderProcessHost. 141 // IPC::Sender via RenderProcessHost.
135 virtual bool Send(IPC::Message* msg) OVERRIDE; 142 virtual bool Send(IPC::Message* msg) OVERRIDE;
136 143
137 // IPC::Listener via RenderProcessHost. 144 // IPC::Listener via RenderProcessHost.
138 virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE; 145 virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE;
(...skipping 18 matching lines...) Expand all
157 // Start and end frame subscription for a specific renderer. 164 // Start and end frame subscription for a specific renderer.
158 // This API only supports subscription to accelerated composited frames. 165 // This API only supports subscription to accelerated composited frames.
159 void BeginFrameSubscription( 166 void BeginFrameSubscription(
160 int route_id, 167 int route_id,
161 scoped_ptr<RenderWidgetHostViewFrameSubscriber> subscriber); 168 scoped_ptr<RenderWidgetHostViewFrameSubscriber> subscriber);
162 void EndFrameSubscription(int route_id); 169 void EndFrameSubscription(int route_id);
163 170
164 #if defined(ENABLE_WEBRTC) 171 #if defined(ENABLE_WEBRTC)
165 // Fires the webrtc log message callback with |message|, if callback is set. 172 // Fires the webrtc log message callback with |message|, if callback is set.
166 void WebRtcLogMessage(const std::string& message); 173 void WebRtcLogMessage(const std::string& message);
174
175 void OnRtpPacket(const uint8* packet_header,
176 size_t header_length,
177 size_t packet_length,
178 bool incoming);
167 #endif 179 #endif
168 180
169 scoped_refptr<ScreenOrientationDispatcherHost> 181 scoped_refptr<ScreenOrientationDispatcherHost>
170 screen_orientation_dispatcher_host() const; 182 screen_orientation_dispatcher_host() const;
171 183
172 // Register/unregister the host identified by the host id in the global host 184 // Register/unregister the host identified by the host id in the global host
173 // list. 185 // list.
174 static void RegisterHost(int host_id, RenderProcessHost* host); 186 static void RegisterHost(int host_id, RenderProcessHost* host);
175 static void UnregisterHost(int host_id); 187 static void UnregisterHost(int host_id);
176 188
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after
405 PowerMonitorMessageBroadcaster power_monitor_broadcaster_; 417 PowerMonitorMessageBroadcaster power_monitor_broadcaster_;
406 418
407 scoped_refptr<AudioRendererHost> audio_renderer_host_; 419 scoped_refptr<AudioRendererHost> audio_renderer_host_;
408 420
409 #if defined(OS_ANDROID) 421 #if defined(OS_ANDROID)
410 scoped_refptr<BrowserDemuxerAndroid> browser_demuxer_android_; 422 scoped_refptr<BrowserDemuxerAndroid> browser_demuxer_android_;
411 #endif 423 #endif
412 424
413 #if defined(ENABLE_WEBRTC) 425 #if defined(ENABLE_WEBRTC)
414 base::Callback<void(const std::string&)> webrtc_log_message_callback_; 426 base::Callback<void(const std::string&)> webrtc_log_message_callback_;
427
428 WebRtcRtpPacketCallback webrtc_rtp_packet_callback_;
429
430 scoped_refptr<P2PSocketDispatcherHost> p2p_socket_dispatcher_host_;
415 #endif 431 #endif
416 432
417 // Message filter and dispatcher for screen orientation. 433 // Message filter and dispatcher for screen orientation.
418 ScreenOrientationDispatcherHost* screen_orientation_dispatcher_host_; 434 ScreenOrientationDispatcherHost* screen_orientation_dispatcher_host_;
419 435
420 int worker_ref_count_; 436 int worker_ref_count_;
421 437
422 // Records the time when the process starts surviving for workers for UMA. 438 // Records the time when the process starts surviving for workers for UMA.
423 base::TimeTicks survive_for_worker_start_time_; 439 base::TimeTicks survive_for_worker_start_time_;
424 440
425 base::WeakPtrFactory<RenderProcessHostImpl> weak_factory_; 441 base::WeakPtrFactory<RenderProcessHostImpl> weak_factory_;
426 442
427 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl); 443 DISALLOW_COPY_AND_ASSIGN(RenderProcessHostImpl);
428 }; 444 };
429 445
430 } // namespace content 446 } // namespace content
431 447
432 #endif // CONTENT_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_IMPL_H_ 448 #endif // CONTENT_BROWSER_RENDERER_HOST_BROWSER_RENDER_PROCESS_HOST_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698