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

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

Issue 2962303003: Revert "Update includes for webrtc/{base => rtc_base} rename (3/3)" (Closed)
Patch Set: 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/safe_compare_unittest.cc ('k') | webrtc/rtc_base/safe_minmax.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 2014 The WebRTC Project Authors. All rights reserved. 2 * Copyright 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 // Borrowed from Chromium's src/base/numerics/safe_conversions.h. 11 // Borrowed from Chromium's src/base/numerics/safe_conversions.h.
12 12
13 #ifndef WEBRTC_RTC_BASE_SAFE_CONVERSIONS_H_ 13 #ifndef WEBRTC_RTC_BASE_SAFE_CONVERSIONS_H_
14 #define WEBRTC_RTC_BASE_SAFE_CONVERSIONS_H_ 14 #define WEBRTC_RTC_BASE_SAFE_CONVERSIONS_H_
15 15
16 #include <limits> 16 #include <limits>
17 17
18 #include "webrtc/rtc_base/checks.h" 18 #include "webrtc/base/checks.h"
19 #include "webrtc/rtc_base/safe_conversions_impl.h" 19 #include "webrtc/base/safe_conversions_impl.h"
20 20
21 namespace rtc { 21 namespace rtc {
22 22
23 // Convenience function that returns true if the supplied value is in range 23 // Convenience function that returns true if the supplied value is in range
24 // for the destination type. 24 // for the destination type.
25 template <typename Dst, typename Src> 25 template <typename Dst, typename Src>
26 inline bool IsValueInRangeForNumericType(Src value) { 26 inline bool IsValueInRangeForNumericType(Src value) {
27 return internal::RangeCheck<Dst>(value) == internal::TYPE_VALID; 27 return internal::RangeCheck<Dst>(value) == internal::TYPE_VALID;
28 } 28 }
29 29
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 return std::numeric_limits<Dst>::max(); 67 return std::numeric_limits<Dst>::max();
68 } 68 }
69 69
70 FATAL(); 70 FATAL();
71 return static_cast<Dst>(value); 71 return static_cast<Dst>(value);
72 } 72 }
73 73
74 } // namespace rtc 74 } // namespace rtc
75 75
76 #endif // WEBRTC_RTC_BASE_SAFE_CONVERSIONS_H_ 76 #endif // WEBRTC_RTC_BASE_SAFE_CONVERSIONS_H_
OLDNEW
« no previous file with comments | « webrtc/rtc_base/safe_compare_unittest.cc ('k') | webrtc/rtc_base/safe_minmax.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698