Changeset 44509 in webkit for trunk/JavaScriptCore
- Timestamp:
- Jun 8, 2009, 4:01:48 PM (16 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r44508 r44509 1 2009-06-08 Dimitri Glazkov <[email protected]> 2 3 Unreviewed, Windows build fix. 4 5 * runtime/DateConstructor.cpp: Changed to use WTF namespace. 6 * runtime/DateConversion.cpp: Added UString include. 7 * runtime/DateInstance.cpp: Changed to use WTF namespace. 8 * wtf/DateMath.cpp: Added math include. 9 1 10 2009-06-08 Dimitri Glazkov <[email protected]> 2 11 -
trunk/JavaScriptCore/runtime/DateConstructor.cpp
r44508 r44509 44 44 #endif 45 45 46 using WTF::GregorianDateTime;46 using namespace WTF; 47 47 48 48 namespace JSC { -
trunk/JavaScriptCore/runtime/DateConversion.cpp
r44508 r44509 44 44 #include "DateConversion.h" 45 45 46 #include "UString.h" 46 47 #include <wtf/DateMath.h> 47 48 -
trunk/JavaScriptCore/runtime/DateInstance.cpp
r44508 r44509 26 26 #include <wtf/DateMath.h> 27 27 #include <wtf/MathExtras.h> 28 29 using namespace WTF; 28 30 29 31 namespace JSC { … … 59 61 if (outputIsUTC) { 60 62 if (m_cache->m_gregorianDateTimeUTCCachedForMS != milli) { 61 WTF::msToGregorianDateTime(milli, true, m_cache->m_cachedGregorianDateTimeUTC);63 msToGregorianDateTime(milli, true, m_cache->m_cachedGregorianDateTimeUTC); 62 64 m_cache->m_gregorianDateTimeUTCCachedForMS = milli; 63 65 } … … 65 67 } else { 66 68 if (m_cache->m_gregorianDateTimeCachedForMS != milli) { 67 WTF::msToGregorianDateTime(milli, false, m_cache->m_cachedGregorianDateTime);69 msToGregorianDateTime(milli, false, m_cache->m_cachedGregorianDateTime); 68 70 m_cache->m_gregorianDateTimeCachedForMS = milli; 69 71 } -
trunk/JavaScriptCore/wtf/DateMath.cpp
r44508 r44509 51 51 52 52 #include <limits> 53 #include <math.h> 53 54 #include <stdint.h> 54 55 #include <time.h>
Note:
See TracChangeset
for help on using the changeset viewer.