| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef THIRD_PARTY_LIBJINGLE_OVERRIDES_INIT_WEBRTC_H_ | 5 #ifndef THIRD_PARTY_LIBJINGLE_OVERRIDES_INIT_WEBRTC_H_ |
| 6 #define THIRD_PARTY_LIBJINGLE_OVERRIDES_INIT_WEBRTC_H_ | 6 #define THIRD_PARTY_LIBJINGLE_OVERRIDES_INIT_WEBRTC_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "allocator_shim/allocator_stub.h" | 10 #include "third_party/libjingle/overrides/allocator_shim/allocator_stub.h" |
| 11 #include "base/logging.h" | 11 #include "base/logging.h" |
| 12 #include "third_party/webrtc/system_wrappers/interface/event_tracer.h" | 12 #include "third_party/webrtc/system_wrappers/interface/event_tracer.h" |
| 13 | 13 |
| 14 namespace base { | 14 namespace base { |
| 15 class CommandLine; | 15 class CommandLine; |
| 16 } | 16 } |
| 17 | 17 |
| 18 namespace cricket { | 18 namespace cricket { |
| 19 class MediaEngineInterface; | 19 class MediaEngineInterface; |
| 20 class WebRtcVideoDecoderFactory; | 20 class WebRtcVideoDecoderFactory; |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 #if !defined(LIBPEERCONNECTION_IMPLEMENTATION) | 77 #if !defined(LIBPEERCONNECTION_IMPLEMENTATION) |
| 78 // Load and initialize the shared WebRTC module (libpeerconnection). | 78 // Load and initialize the shared WebRTC module (libpeerconnection). |
| 79 // Call this explicitly to load and initialize the WebRTC module (e.g. before | 79 // Call this explicitly to load and initialize the WebRTC module (e.g. before |
| 80 // initializing the sandbox in Chrome). | 80 // initializing the sandbox in Chrome). |
| 81 // If not called explicitly, this function will still be called from the main | 81 // If not called explicitly, this function will still be called from the main |
| 82 // CreateWebRtcMediaEngine factory function the first time it is called. | 82 // CreateWebRtcMediaEngine factory function the first time it is called. |
| 83 bool InitializeWebRtcModule(); | 83 bool InitializeWebRtcModule(); |
| 84 #endif | 84 #endif |
| 85 | 85 |
| 86 #endif // THIRD_PARTY_LIBJINGLE_OVERRIDES_INIT_WEBRTC_H_ | 86 #endif // THIRD_PARTY_LIBJINGLE_OVERRIDES_INIT_WEBRTC_H_ |
| OLD | NEW |