Index: content/public/renderer/webrtc_logging_initializer.cc |
diff --git a/content/public/renderer/webrtc_logging_initializer.cc b/content/public/renderer/webrtc_logging_initializer.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..6cb94a6e34afb2b2371c5fd268b77faffcf47f70 |
--- /dev/null |
+++ b/content/public/renderer/webrtc_logging_initializer.cc |
@@ -0,0 +1,15 @@ |
+// Copyright (c) 2013 The Chromium Authors. All rights reserved. |
Jói
2013/05/27 17:50:03
nit: No (c). I think with or without is OK though,
Henrik Grunell
2013/05/28 06:04:30
Done.
|
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#include "content/public/renderer/webrtc_logging_initializer.h" |
+ |
+#include "third_party/libjingle/overrides/talk/base/logging.h" |
+ |
+namespace content { |
+ |
+void InitWebRtcLoggingDelegate(talk_base::LogMessageDelegate* delegate) { |
+ talk_base::InitDiagnosticLoggingDelegate(delegate); |
+} |
+ |
+} // namespace content |