diff options
author | vrk@chromium.org <vrk@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-29 00:55:43 +0000 |
---|---|---|
committer | vrk@chromium.org <vrk@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-29 00:55:43 +0000 |
commit | d95595eb5145e310baf692f359f9488faf73750d (patch) | |
tree | 41e2e610d8c3856acf1f747891509dcd12abbd65 /content/browser/renderer_host/render_process_host_impl.h | |
parent | b3c1b3b66d1c720172e731d1bfc44cfb44c992a3 (diff) | |
download | chromium_src-d95595eb5145e310baf692f359f9488faf73750d.zip chromium_src-d95595eb5145e310baf692f359f9488faf73750d.tar.gz chromium_src-d95595eb5145e310baf692f359f9488faf73750d.tar.bz2 |
Revert 247164 "Implement browser-side logging to WebRtc log"
Need to revert this because it's causing crashes on Canary.
BUG=338848
> Implement browser-side logging to WebRtc log
>
> This adds a logging callback to RenderProcessHost and also adds logging
> for device enumeration in the browser process.
>
> BUG=332261
>
> Review URL: https://codereview.chromium.org/140843007
TBR=vrk@chromium.org
Review URL: https://codereview.chromium.org/132233058
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@247548 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/renderer_host/render_process_host_impl.h')
-rw-r--r-- | content/browser/renderer_host/render_process_host_impl.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/content/browser/renderer_host/render_process_host_impl.h b/content/browser/renderer_host/render_process_host_impl.h index a2d8df5..73522cb 100644 --- a/content/browser/renderer_host/render_process_host_impl.h +++ b/content/browser/renderer_host/render_process_host_impl.h @@ -124,8 +124,6 @@ class CONTENT_EXPORT RenderProcessHostImpl #if defined(ENABLE_WEBRTC) virtual void EnableAecDump(const base::FilePath& file) OVERRIDE; virtual void DisableAecDump() OVERRIDE; - virtual void SetWebRtcLogMessageCallback( - base::Callback<void(const std::string&)> callback) OVERRIDE; #endif // IPC::Sender via RenderProcessHost. @@ -167,11 +165,6 @@ class CONTENT_EXPORT RenderProcessHostImpl return make_scoped_refptr(geolocation_dispatcher_host_); } -#if defined(ENABLE_WEBRTC) - // Fires the webrtc log message callback with |message|, if callback is set. - void WebRtcLogMessage(const std::string& message); -#endif - // Register/unregister the host identified by the host id in the global host // list. static void RegisterHost(int host_id, RenderProcessHost* host); @@ -396,10 +389,6 @@ class CONTENT_EXPORT RenderProcessHostImpl // Message filter for geolocation messages. GeolocationDispatcherHost* geolocation_dispatcher_host_; -#if defined(ENABLE_WEBRTC) - base::Callback<void(const std::string&)> webrtc_log_message_callback_; -#endif - // Lives on the browser's ChildThread. base::WeakPtrFactory<RenderProcessHostImpl> weak_factory_; |