| 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.
|
| +// 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
|
|
|