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

Unified Diff: trunk/src/content/browser/renderer_host/render_process_host_impl.h

Issue 132233058: Revert 247164 "Implement browser-side logging to WebRtc log" (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: trunk/src/content/browser/renderer_host/render_process_host_impl.h
===================================================================
--- trunk/src/content/browser/renderer_host/render_process_host_impl.h (revision 247547)
+++ trunk/src/content/browser/renderer_host/render_process_host_impl.h (working copy)
@@ -124,8 +124,6 @@
#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 @@
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 @@
// 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_;

Powered by Google App Engine
This is Rietveld 408576698