| 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..08abc66a7fddc7bd8bda0d44ccb99a35b977de61
|
| --- /dev/null
|
| +++ b/content/renderer/media/webrtc_logging_initializer.h
|
| @@ -0,0 +1,23 @@
|
| +// 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_H_
|
| +#define CONTENT_RENDERER_WEBRTC_LOGGING_INITIALIZER_H_
|
| +
|
| +#include <string>
|
| +
|
| +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_H_
|
|
|