Changeset 87788 in webkit for trunk/Source/JavaScriptCore/wtf/DateMath.h
- Timestamp:
- Jun 1, 2011, 2:17:53 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/wtf/DateMath.h
r77785 r87788 52 52 #include <wtf/OwnArrayPtr.h> 53 53 #include <wtf/PassOwnArrayPtr.h> 54 #include <wtf/text/WTFString.h> 54 55 #include <wtf/UnusedParam.h> 55 56 … … 62 63 double parseDateFromNullTerminatedCharacters(const char* dateString); 63 64 double timeClip(double); 65 // dayOfWeek: [0, 6] 0 being Monday, day: [1, 31], month: [0, 11], year: ex: 2011, hours: [0, 23], minutes: [0, 59], seconds: [0, 59], utcOffset: [-720,720]. 66 String makeRFC2822DateString(unsigned dayOfWeek, unsigned day, unsigned month, unsigned year, unsigned hours, unsigned minutes, unsigned seconds, int utcOffset); 64 67 65 68 inline double jsCurrentTime() … … 107 110 using WTF::secondsPerMinute; 108 111 using WTF::parseDateFromNullTerminatedCharacters; 112 using WTF::makeRFC2822DateString; 109 113 using WTF::calculateUTCOffset; 110 114 using WTF::calculateDSTOffset;
Note:
See TracChangeset
for help on using the changeset viewer.