init_webrtc.h 623 B

123456789101112131415
  1. // Copyright 2013 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. #ifndef THIRD_PARTY_WEBRTC_OVERRIDES_INIT_WEBRTC_H_
  5. #define THIRD_PARTY_WEBRTC_OVERRIDES_INIT_WEBRTC_H_
  6. #include "third_party/webrtc/rtc_base/system/rtc_export.h"
  7. // Initialize WebRTC. Call this explicitly to initialize WebRTC module
  8. // (before initializing the sandbox in Chrome) and hook up Chrome+WebRTC
  9. // integration such as common logging and tracing.
  10. RTC_EXPORT bool InitializeWebRtcModule();
  11. #endif // THIRD_PARTY_WEBRTC_OVERRIDES_INIT_WEBRTC_H_