OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 21 matching lines...) Expand all Loading... |
32 #include "platform/DateComponents.h" | 32 #include "platform/DateComponents.h" |
33 | 33 |
34 #include <limits.h> | 34 #include <limits.h> |
35 #include "wtf/ASCIICType.h" | 35 #include "wtf/ASCIICType.h" |
36 #include "wtf/DateMath.h" | 36 #include "wtf/DateMath.h" |
37 #include "wtf/MathExtras.h" | 37 #include "wtf/MathExtras.h" |
38 #include "wtf/text/WTFString.h" | 38 #include "wtf/text/WTFString.h" |
39 | 39 |
40 using namespace std; | 40 using namespace std; |
41 | 41 |
42 namespace WebCore { | 42 namespace blink { |
43 | 43 |
44 // HTML5 specification defines minimum week of year is one. | 44 // HTML5 specification defines minimum week of year is one. |
45 const int DateComponents::minimumWeekNumber = 1; | 45 const int DateComponents::minimumWeekNumber = 1; |
46 | 46 |
47 // HTML5 specification defines maximum week of year is 53. | 47 // HTML5 specification defines maximum week of year is 53. |
48 const int DateComponents::maximumWeekNumber = 53; | 48 const int DateComponents::maximumWeekNumber = 53; |
49 | 49 |
50 static const int maximumMonthInMaximumYear = 8; // This is September, since mont
hs are 0 based. | 50 static const int maximumMonthInMaximumYear = 8; // This is September, since mont
hs are 0 based. |
51 static const int maximumDayInMaximumMonth = 13; | 51 static const int maximumDayInMaximumMonth = 13; |
52 static const int maximumWeekInMaximumYear = 37; // The week of 275760-09-13 | 52 static const int maximumWeekInMaximumYear = 37; // The week of 275760-09-13 |
(...skipping 654 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
707 return toStringForTime(format); | 707 return toStringForTime(format); |
708 case Week: | 708 case Week: |
709 return String::format("%04d-W%02d", m_year, m_week); | 709 return String::format("%04d-W%02d", m_year, m_week); |
710 case Invalid: | 710 case Invalid: |
711 break; | 711 break; |
712 } | 712 } |
713 ASSERT_NOT_REACHED(); | 713 ASSERT_NOT_REACHED(); |
714 return String("(Invalid DateComponents)"); | 714 return String("(Invalid DateComponents)"); |
715 } | 715 } |
716 | 716 |
717 } // namespace WebCore | 717 } // namespace blink |
OLD | NEW |