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

Side by Side Diff: base/time.cc

Issue 12213061: Move sys_string_conversions to base/strings. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rm him Created 7 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « base/sys_string_conversions_win.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/time.h" 5 #include "base/time.h"
6 6
7 #include <math.h> 7 #include <math.h>
8 #if defined(OS_WIN) 8 #if defined(OS_WIN)
9 #include <float.h> 9 #include <float.h>
10 #endif 10 #endif
11 11
12 #include <limits> 12 #include <limits>
13 13
14 #include "base/sys_string_conversions.h" 14 #include "base/strings/sys_string_conversions.h"
15 #include "base/third_party/nspr/prtime.h" 15 #include "base/third_party/nspr/prtime.h"
16 16
17 #include "base/logging.h" 17 #include "base/logging.h"
18 18
19 namespace base { 19 namespace base {
20 20
21 namespace { 21 namespace {
22 #if defined(OS_WIN) 22 #if defined(OS_WIN)
23 inline bool isnan(double num) { return !!_isnan(num); } 23 inline bool isnan(double num) { return !!_isnan(num); }
24 #endif 24 #endif
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 return is_in_range(month, 1, 12) && 187 return is_in_range(month, 1, 12) &&
188 is_in_range(day_of_week, 0, 6) && 188 is_in_range(day_of_week, 0, 6) &&
189 is_in_range(day_of_month, 1, 31) && 189 is_in_range(day_of_month, 1, 31) &&
190 is_in_range(hour, 0, 23) && 190 is_in_range(hour, 0, 23) &&
191 is_in_range(minute, 0, 59) && 191 is_in_range(minute, 0, 59) &&
192 is_in_range(second, 0, 60) && 192 is_in_range(second, 0, 60) &&
193 is_in_range(millisecond, 0, 999); 193 is_in_range(millisecond, 0, 999);
194 } 194 }
195 195
196 } // namespace base 196 } // namespace base
OLDNEW
« no previous file with comments | « base/sys_string_conversions_win.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698