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_PUBLIC_BROWSER_RENDER_PROCESS_HOST_H_ | 5 #ifndef CONTENT_PUBLIC_BROWSER_RENDER_PROCESS_HOST_H_ |
6 #define CONTENT_PUBLIC_BROWSER_RENDER_PROCESS_HOST_H_ | 6 #define CONTENT_PUBLIC_BROWSER_RENDER_PROCESS_HOST_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/id_map.h" | 9 #include "base/id_map.h" |
10 #include "base/process/kill.h" | 10 #include "base/process/kill.h" |
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
198 | 198 |
199 #if defined(ENABLE_WEBRTC) | 199 #if defined(ENABLE_WEBRTC) |
200 virtual void EnableAecDump(const base::FilePath& file) = 0; | 200 virtual void EnableAecDump(const base::FilePath& file) = 0; |
201 virtual void DisableAecDump() = 0; | 201 virtual void DisableAecDump() = 0; |
202 | 202 |
203 // When set, |callback| receives log messages regarding, for example, media | 203 // When set, |callback| receives log messages regarding, for example, media |
204 // devices (webcams, mics, etc) that were initially requested in the render | 204 // devices (webcams, mics, etc) that were initially requested in the render |
205 // process associated with this RenderProcessHost. | 205 // process associated with this RenderProcessHost. |
206 virtual void SetWebRtcLogMessageCallback( | 206 virtual void SetWebRtcLogMessageCallback( |
207 base::Callback<void(const std::string&)> callback) = 0; | 207 base::Callback<void(const std::string&)> callback) = 0; |
208 | |
209 typedef base::Callback<void(const uint8* packet_header, | |
210 size_t header_length, | |
211 size_t packet_length, | |
212 bool incoming)> WebRtcRtpPacketCallback; | |
213 virtual void SetWebRtcRtpPacketCallback( | |
214 const WebRtcRtpPacketCallback& callback) = 0; | |
215 | |
216 virtual void StartRtpDump(bool incoming, bool outgoing) = 0; | |
jam
2014/05/14 23:59:35
can you simplify this api by:
1) removing teh SetW
jiayl
2014/05/15 23:06:22
Great idea! Done.
| |
217 virtual void StopRtpDump(bool incoming, bool outgoing) = 0; | |
208 #endif | 218 #endif |
209 | 219 |
210 // Tells the ResourceDispatcherHost to resume a deferred navigation without | 220 // Tells the ResourceDispatcherHost to resume a deferred navigation without |
211 // transferring it to a new renderer process. | 221 // transferring it to a new renderer process. |
212 virtual void ResumeDeferredNavigation(const GlobalRequestID& request_id) = 0; | 222 virtual void ResumeDeferredNavigation(const GlobalRequestID& request_id) = 0; |
213 | 223 |
214 // Notifies the renderer that the timezone configuration of the system might | 224 // Notifies the renderer that the timezone configuration of the system might |
215 // have changed. | 225 // have changed. |
216 virtual void NotifyTimezoneChange() = 0; | 226 virtual void NotifyTimezoneChange() = 0; |
217 | 227 |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
266 static void SetMaxRendererProcessCount(size_t count); | 276 static void SetMaxRendererProcessCount(size_t count); |
267 | 277 |
268 // Returns the current max number of renderer processes used by the content | 278 // Returns the current max number of renderer processes used by the content |
269 // module. | 279 // module. |
270 static size_t GetMaxRendererProcessCount(); | 280 static size_t GetMaxRendererProcessCount(); |
271 }; | 281 }; |
272 | 282 |
273 } // namespace content. | 283 } // namespace content. |
274 | 284 |
275 #endif // CONTENT_PUBLIC_BROWSER_RENDER_PROCESS_HOST_H_ | 285 #endif // CONTENT_PUBLIC_BROWSER_RENDER_PROCESS_HOST_H_ |
OLD | NEW |