Changeset 50608 in webkit for trunk/JavaScriptCore/runtime/DateConversion.h
- Timestamp:
- Nov 6, 2009, 3:33:17 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/DateConversion.h
r50591 r50608 43 43 #define DateConversion_h 44 44 45 namespace WTF {46 struct GregorianDateTime;47 }48 49 45 namespace JSC { 50 46 47 class ExecState; 51 48 class UString; 49 struct GregorianDateTime; 52 50 53 double parseDate( const UString&);54 UString formatDate(const WTF::GregorianDateTime&);55 UString formatDateUTCVariant(const WTF::GregorianDateTime&);56 UString formatTime(const WTF::GregorianDateTime&, bool inputIsUTC);51 double parseDate(ExecState* exec, const UString&); 52 UString formatDate(const GregorianDateTime&); 53 UString formatDateUTCVariant(const GregorianDateTime&); 54 UString formatTime(const GregorianDateTime&, bool inputIsUTC); 57 55 58 56 } // namespace JSC
Note:
See TracChangeset
for help on using the changeset viewer.