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

Unified Diff: content/public/renderer/webrtc_logging_initializer.cc

Issue 15741003: Moving WebRTC logging related files from content to chrome. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed some errors. 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/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

Powered by Google App Engine
This is Rietveld 408576698