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

Unified Diff: chrome/renderer/media/webrtc_logging_message_filter.h

Issue 23691066: Hook up WebRTC logging extension API to the underlying functionality. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 7 years, 2 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: chrome/renderer/media/webrtc_logging_message_filter.h
diff --git a/chrome/renderer/media/webrtc_logging_message_filter.h b/chrome/renderer/media/webrtc_logging_message_filter.h
index 4d3ae5f00747b65f269792f1ea9baecc51504ae7..e46030338ca1c34b50f815df0c2dd961f017907e 100644
--- a/chrome/renderer/media/webrtc_logging_message_filter.h
+++ b/chrome/renderer/media/webrtc_logging_message_filter.h
@@ -23,8 +23,7 @@ class WebRtcLoggingMessageFilter
explicit WebRtcLoggingMessageFilter(
const scoped_refptr<base::MessageLoopProxy>& io_message_loop);
- virtual void InitLogging(const std::string& app_session_id,
- const std::string& app_url);
+ void LoggingStopped();
const scoped_refptr<base::MessageLoopProxy>& io_message_loop() {
return io_message_loop_;
@@ -42,9 +41,8 @@ class WebRtcLoggingMessageFilter
void CreateLoggingHandler();
- void OnLogOpened(base::SharedMemoryHandle handle, uint32 length);
- void OnOpenLogFailed();
-
+ void OnStartLogging(base::SharedMemoryHandle handle, uint32 length);
+ void OnStopLogging();
void Send(IPC::Message* message);
// Owned by this class. The only other pointer to it is in libjingle's logging

Powered by Google App Engine
This is Rietveld 408576698