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

Unified Diff: content/renderer/media/webrtc_logging_initializer.h

Issue 15741003: Moving WebRTC logging related files from content to chrome. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Code review. Created 7 years, 7 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: content/renderer/media/webrtc_logging_initializer.h
diff --git a/content/renderer/media/webrtc_logging_initializer.h b/content/renderer/media/webrtc_logging_initializer.h
new file mode 100644
index 0000000000000000000000000000000000000000..a033f30e9370adf54965897e4a3b88a048bc776a
--- /dev/null
+++ b/content/renderer/media/webrtc_logging_initializer.h
@@ -0,0 +1,25 @@
+// Copyright 2013 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CONTENT_RENDERER_WEBRTC_LOGGING_INITIALIZER_IMPL_H_
jam 2013/05/30 15:01:17 nit: update
Henrik Grunell 2013/05/31 19:26:38 Done.
+#define CONTENT_RENDERER_WEBRTC_LOGGING_INITIALIZER_IMPL_H_
+
+#include <string>
+
+#include "content/common/content_export.h"
jam 2013/05/30 15:01:17 nit: not necessary
Henrik Grunell 2013/05/31 19:26:38 Done.
+
+namespace content {
+
+class WebRtcLogMessageDelegate;
+
+// Must be called on IO thread.
+void InitWebRtcLogging(const std::string& app_session_id,
+ const std::string& app_url);
+
+// May be called on any thread.
+void WebRtcLogMessage(const std::string& message);
+
+} // namespace content
+
+#endif // CONTENT_RENDERER_WEBRTC_LOGGING_INITIALIZER_IMPL_H_

Powered by Google App Engine
This is Rietveld 408576698