OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CONTENT_PUBLIC_RENDERER_WEBRTC_LOGGING_INITIALIZER_H_ |
| 6 #define CONTENT_PUBLIC_RENDERER_WEBRTC_LOGGING_INITIALIZER_H_ |
| 7 |
| 8 #include "content/common/content_export.h" |
| 9 |
| 10 namespace talk_base { |
| 11 class LogMessageDelegate; |
| 12 } // namespace talk_base |
| 13 |
| 14 namespace content { |
| 15 |
| 16 // Need to call libjingle from content. |
| 17 CONTENT_EXPORT void InitWebRtcLoggingDelegate( |
| 18 talk_base::LogMessageDelegate* delegate); |
| 19 |
| 20 } // namespace content |
| 21 |
| 22 #endif // CONTENT_PUBLIC_RENDERER_WEBRTC_LOGGING_INITIALIZER_H_ |
OLD | NEW |