| 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 #include "allocator_shim/allocator_stub.h" | 5 #include "allocator_shim/allocator_stub.h" |
| 6 #include "base/command_line.h" | 6 #include "base/command_line.h" |
| 7 #include "base/files/file_path.h" | 7 #include "base/files/file_path.h" |
| 8 #include "base/logging.h" | 8 #include "base/logging.h" |
| 9 #include "init_webrtc.h" | 9 #include "init_webrtc.h" |
| 10 #include "talk/base/basictypes.h" | |
| 11 #include "talk/media/webrtc/webrtcmediaengine.h" | 10 #include "talk/media/webrtc/webrtcmediaengine.h" |
| 12 #include "third_party/libjingle/overrides/talk/base/logging.h" | 11 #include "webrtc/base/basictypes.h" |
| 12 #include "webrtc/base/logging.h" |
| 13 | 13 |
| 14 #if !defined(LIBPEERCONNECTION_IMPLEMENTATION) || defined(LIBPEERCONNECTION_LIB) | 14 #if !defined(LIBPEERCONNECTION_IMPLEMENTATION) || defined(LIBPEERCONNECTION_LIB) |
| 15 #error "Only compile the allocator proxy with the shared_library implementation" | 15 #error "Only compile the allocator proxy with the shared_library implementation" |
| 16 #endif | 16 #endif |
| 17 | 17 |
| 18 #if defined(OS_WIN) | 18 #if defined(OS_WIN) |
| 19 #define ALLOC_EXPORT __declspec(dllexport) | 19 #define ALLOC_EXPORT __declspec(dllexport) |
| 20 #else | 20 #else |
| 21 #define ALLOC_EXPORT __attribute__((visibility("default"))) | 21 #define ALLOC_EXPORT __attribute__((visibility("default"))) |
| 22 #endif | 22 #endif |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 init_diagnostic_logging) { | 74 init_diagnostic_logging) { |
| 75 #if !defined(OS_MACOSX) && !defined(OS_ANDROID) | 75 #if !defined(OS_MACOSX) && !defined(OS_ANDROID) |
| 76 g_alloc = alloc; | 76 g_alloc = alloc; |
| 77 g_dealloc = dealloc; | 77 g_dealloc = dealloc; |
| 78 #endif | 78 #endif |
| 79 | 79 |
| 80 g_field_trial_find_ = field_trial_find; | 80 g_field_trial_find_ = field_trial_find; |
| 81 | 81 |
| 82 *create_media_engine = &CreateWebRtcMediaEngine; | 82 *create_media_engine = &CreateWebRtcMediaEngine; |
| 83 *destroy_media_engine = &DestroyWebRtcMediaEngine; | 83 *destroy_media_engine = &DestroyWebRtcMediaEngine; |
| 84 *init_diagnostic_logging = &talk_base::InitDiagnosticLoggingDelegateFunction; | 84 *init_diagnostic_logging = &rtc::InitDiagnosticLoggingDelegateFunction; |
| 85 | 85 |
| 86 if (CommandLine::Init(0, NULL)) { | 86 if (CommandLine::Init(0, NULL)) { |
| 87 #if !defined(OS_WIN) | 87 #if !defined(OS_WIN) |
| 88 // This is not needed on Windows since CommandLine::Init has already | 88 // This is not needed on Windows since CommandLine::Init has already |
| 89 // done the equivalent thing via the GetCommandLine() API. | 89 // done the equivalent thing via the GetCommandLine() API. |
| 90 CommandLine::ForCurrentProcess()->AppendArguments(command_line, true); | 90 CommandLine::ForCurrentProcess()->AppendArguments(command_line, true); |
| 91 #endif | 91 #endif |
| 92 logging::LoggingSettings settings; | 92 logging::LoggingSettings settings; |
| 93 settings.logging_dest = logging::LOG_TO_SYSTEM_DEBUG_LOG; | 93 settings.logging_dest = logging::LOG_TO_SYSTEM_DEBUG_LOG; |
| 94 logging::InitLogging(settings); | 94 logging::InitLogging(settings); |
| 95 | 95 |
| 96 // Override the log message handler to forward logs to chrome's handler. | 96 // Override the log message handler to forward logs to chrome's handler. |
| 97 logging::SetLogMessageHandler(log_handler); | 97 logging::SetLogMessageHandler(log_handler); |
| 98 webrtc::SetupEventTracer(trace_get_category_enabled, | 98 webrtc::SetupEventTracer(trace_get_category_enabled, |
| 99 trace_add_trace_event); | 99 trace_add_trace_event); |
| 100 } | 100 } |
| 101 | 101 |
| 102 return true; | 102 return true; |
| 103 } | 103 } |
| 104 } // extern "C" | 104 } // extern "C" |
| OLD | NEW |