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

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

Issue 2966523003: Reland "Update includes for webrtc/{base => rtc_base} rename (3/3)" (Closed)
Patch Set: Restoring prime suspect includes 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
OLDNEW
1 /* 1 /*
2 * Copyright 2016 The WebRTC Project Authors. All rights reserved. 2 * Copyright 2016 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
(...skipping 19 matching lines...) Expand all
30 30
31 #ifndef WEBRTC_RTC_BASE_SAFE_COMPARE_H_ 31 #ifndef WEBRTC_RTC_BASE_SAFE_COMPARE_H_
32 #define WEBRTC_RTC_BASE_SAFE_COMPARE_H_ 32 #define WEBRTC_RTC_BASE_SAFE_COMPARE_H_
33 33
34 #include <stddef.h> 34 #include <stddef.h>
35 #include <stdint.h> 35 #include <stdint.h>
36 36
37 #include <type_traits> 37 #include <type_traits>
38 #include <utility> 38 #include <utility>
39 39
40 #include "webrtc/base/type_traits.h" 40 #include "webrtc/rtc_base/type_traits.h"
41 41
42 namespace rtc { 42 namespace rtc {
43 43
44 namespace safe_cmp_impl { 44 namespace safe_cmp_impl {
45 45
46 template <size_t N> 46 template <size_t N>
47 struct LargerIntImpl : std::false_type {}; 47 struct LargerIntImpl : std::false_type {};
48 template <> 48 template <>
49 struct LargerIntImpl<sizeof(int8_t)> : std::true_type { 49 struct LargerIntImpl<sizeof(int8_t)> : std::true_type {
50 using type = int16_t; 50 using type = int16_t;
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
167 RTC_SAFECMP_MAKE_FUN(Ne) 167 RTC_SAFECMP_MAKE_FUN(Ne)
168 RTC_SAFECMP_MAKE_FUN(Lt) 168 RTC_SAFECMP_MAKE_FUN(Lt)
169 RTC_SAFECMP_MAKE_FUN(Le) 169 RTC_SAFECMP_MAKE_FUN(Le)
170 RTC_SAFECMP_MAKE_FUN(Gt) 170 RTC_SAFECMP_MAKE_FUN(Gt)
171 RTC_SAFECMP_MAKE_FUN(Ge) 171 RTC_SAFECMP_MAKE_FUN(Ge)
172 #undef RTC_SAFECMP_MAKE_FUN 172 #undef RTC_SAFECMP_MAKE_FUN
173 173
174 } // namespace rtc 174 } // namespace rtc
175 175
176 #endif // WEBRTC_RTC_BASE_SAFE_COMPARE_H_ 176 #endif // WEBRTC_RTC_BASE_SAFE_COMPARE_H_
OLDNEW
« no previous file with comments | « webrtc/rtc_base/rtccertificategenerator_unittest.cc ('k') | webrtc/rtc_base/safe_compare_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698