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

Side by Side Diff: webrtc/rtc_base/format_macros.h

Issue 2877023002: Move webrtc/{base => rtc_base} (Closed)
Patch Set: update presubmit.py and DEPS include rules Created 3 years, 5 months 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/rtc_base/flags.cc ('k') | webrtc/rtc_base/function_view.h » ('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) 2014 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2014 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 #ifndef WEBRTC_BASE_FORMAT_MACROS_H_ 11 #ifndef WEBRTC_RTC_BASE_FORMAT_MACROS_H_
12 #define WEBRTC_BASE_FORMAT_MACROS_H_ 12 #define WEBRTC_RTC_BASE_FORMAT_MACROS_H_
13 13
14 // This file defines the format macros for some integer types and is derived 14 // This file defines the format macros for some integer types and is derived
15 // from Chromium's base/format_macros.h. 15 // from Chromium's base/format_macros.h.
16 16
17 // To print a 64-bit value in a portable way: 17 // To print a 64-bit value in a portable way:
18 // int64_t value; 18 // int64_t value;
19 // printf("xyz:%" PRId64, value); 19 // printf("xyz:%" PRId64, value);
20 // The "d" in the macro corresponds to %d; you can also use PRIu64 etc. 20 // The "d" in the macro corresponds to %d; you can also use PRIu64 etc.
21 // 21 //
22 // To print a size_t value in a portable way: 22 // To print a size_t value in a portable way:
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 #if !defined(PRIx64) 86 #if !defined(PRIx64)
87 #define PRIx64 "I64x" 87 #define PRIx64 "I64x"
88 #endif 88 #endif
89 89
90 #if !defined(PRIuS) 90 #if !defined(PRIuS)
91 #define PRIuS "Iu" 91 #define PRIuS "Iu"
92 #endif 92 #endif
93 93
94 #endif 94 #endif
95 95
96 #endif // WEBRTC_BASE_FORMAT_MACROS_H_ 96 #endif // WEBRTC_RTC_BASE_FORMAT_MACROS_H_
OLDNEW
« no previous file with comments | « webrtc/rtc_base/flags.cc ('k') | webrtc/rtc_base/function_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698