Changeset 31943 in webkit for trunk/JavaScriptCore/kjs/date_object.h
- Timestamp:
- Apr 16, 2008, 7:31:40 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/date_object.h
r31937 r31943 22 22 #define DATE_OBJECT_H 23 23 24 #include "DateMath.h"25 24 #include "function.h" 26 25 #include "JSWrapperObject.h" … … 29 28 namespace KJS { 30 29 30 struct GregorianDateTime; 31 31 class FunctionPrototype; 32 32 class ObjectPrototype; … … 48 48 49 49 private: 50 struct Cache { 51 double m_gregorianDateTimeCachedForMS; 52 GregorianDateTime m_cachedGregorianDateTime; 53 double m_gregorianDateTimeUTCCachedForMS; 54 GregorianDateTime m_cachedGregorianDateTimeUTC; 55 }; 56 50 struct Cache; 57 51 mutable Cache* m_cache; 58 52 };
Note:
See TracChangeset
for help on using the changeset viewer.