| Index: content/public/browser/render_process_host.h
|
| diff --git a/content/public/browser/render_process_host.h b/content/public/browser/render_process_host.h
|
| index ee650367fccb1cd2dcfc0f4a26ecc0e8ab6dd14f..1e0e5ba02708e822f556fbe978019c29a8820117 100644
|
| --- a/content/public/browser/render_process_host.h
|
| +++ b/content/public/browser/render_process_host.h
|
| @@ -198,6 +198,11 @@ class CONTENT_EXPORT RenderProcessHost : public IPC::Sender,
|
| // |empty_allowed| must be set to false for navigations for security reasons.
|
| virtual void FilterURL(bool empty_allowed, GURL* url) = 0;
|
|
|
| + typedef base::Callback<void(scoped_ptr<uint8[]> packet_header,
|
| + size_t header_length,
|
| + size_t packet_length,
|
| + bool incoming)> WebRtcRtpPacketCallback;
|
| +
|
| #if defined(ENABLE_WEBRTC)
|
| virtual void EnableAecDump(const base::FilePath& file) = 0;
|
| virtual void DisableAecDump() = 0;
|
| @@ -208,11 +213,6 @@ class CONTENT_EXPORT RenderProcessHost : public IPC::Sender,
|
| virtual void SetWebRtcLogMessageCallback(
|
| base::Callback<void(const std::string&)> callback) = 0;
|
|
|
| - typedef base::Callback<void(scoped_ptr<uint8[]> packet_header,
|
| - size_t header_length,
|
| - size_t packet_length,
|
| - bool incoming)> WebRtcRtpPacketCallback;
|
| -
|
| typedef base::Callback<void(bool incoming, bool outgoing)>
|
| WebRtcStopRtpDumpCallback;
|
|
|
|
|