1/* 2 * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. 3 * 4 * Use of this source code is governed by a BSD-style license 5 * that can be found in the LICENSE file in the root of the source 6 * tree. An additional intellectual property rights grant can be found 7 * in the file PATENTS. All contributing project authors may 8 * be found in the AUTHORS file in the root of the source tree. 9 */ 10 11#include "trace.h" 12 13namespace webrtc { 14 15void Trace::CreateTrace() 16{ 17} 18 19void Trace::ReturnTrace() 20{ 21} 22 23WebRtc_Word32 Trace::SetLevelFilter(WebRtc_UWord32 /*filter*/) 24{ 25 return 0; 26} 27 28WebRtc_Word32 Trace::LevelFilter(WebRtc_UWord32& /*filter*/) 29{ 30 return 0; 31} 32 33WebRtc_Word32 Trace::TraceFile( 34 char/*fileName*/[1024]) 35{ 36 return -1; 37} 38 39WebRtc_Word32 Trace::SetTraceFile(const char* /*fileName*/, 40 const bool /*addFileCounter*/) 41{ 42 return -1; 43} 44 45WebRtc_Word32 Trace::SetTraceCallback(TraceCallback* /*callback*/) 46{ 47 return -1; 48} 49 50void Trace::Add(const TraceLevel /*level*/, const TraceModule /*module*/, 51 const WebRtc_Word32 /*id*/, const char* /*msg*/, ...) 52 53{ 54} 55 56} // namespace webrtc 57