Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(91)

Side by Side Diff: webrtc/system_wrappers/source/logcat_trace_context.cc

Issue 1413333002: system_wrappers: rename interface -> include (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebased again! Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « webrtc/system_wrappers/source/file_impl.cc ('k') | webrtc/system_wrappers/source/logging.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 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 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 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
11 #include "webrtc/system_wrappers/interface/logcat_trace_context.h" 11 #include "webrtc/system_wrappers/include/logcat_trace_context.h"
12 12
13 #include <android/log.h> 13 #include <android/log.h>
14 #include <assert.h> 14 #include <assert.h>
15 15
16 #include "webrtc/system_wrappers/interface/logging.h" 16 #include "webrtc/system_wrappers/include/logging.h"
17 17
18 namespace webrtc { 18 namespace webrtc {
19 19
20 static android_LogPriority AndroidLogPriorityFromWebRtcLogLevel( 20 static android_LogPriority AndroidLogPriorityFromWebRtcLogLevel(
21 TraceLevel webrtc_level) { 21 TraceLevel webrtc_level) {
22 // NOTE: this mapping is somewhat arbitrary. StateInfo and Info are mapped 22 // NOTE: this mapping is somewhat arbitrary. StateInfo and Info are mapped
23 // to DEBUG because they are highly verbose in webrtc code (which is 23 // to DEBUG because they are highly verbose in webrtc code (which is
24 // unfortunate). 24 // unfortunate).
25 switch (webrtc_level) { 25 switch (webrtc_level) {
26 case webrtc::kTraceStateInfo: return ANDROID_LOG_DEBUG; 26 case webrtc::kTraceStateInfo: return ANDROID_LOG_DEBUG;
(...skipping 27 matching lines...) Expand all
54 } 54 }
55 55
56 void LogcatTraceContext::Print(TraceLevel level, 56 void LogcatTraceContext::Print(TraceLevel level,
57 const char* message, 57 const char* message,
58 int length) { 58 int length) {
59 __android_log_print(AndroidLogPriorityFromWebRtcLogLevel(level), 59 __android_log_print(AndroidLogPriorityFromWebRtcLogLevel(level),
60 "WEBRTC", "%.*s", length, message); 60 "WEBRTC", "%.*s", length, message);
61 } 61 }
62 62
63 } // namespace webrtc 63 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/system_wrappers/source/file_impl.cc ('k') | webrtc/system_wrappers/source/logging.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698