Changeset 28479 in webkit for trunk/JavaScriptCore/kjs
- Timestamp:
- Dec 5, 2007, 9:25:45 PM (17 years ago)
- Location:
- trunk/JavaScriptCore/kjs
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/JSGlobalObject.cpp
r28474 r28479 42 42 #include "regexp_object.h" 43 43 #include "string_object.h" 44 45 #if HAVE(SYS_TIME_H) 44 46 #include <sys/time.h> 47 #endif 48 49 #if PLATFORM(WIN_OS) 50 #include <windows.h> 51 #endif 52 53 #if PLATFORM(QT) 54 #include <QDateTime> 55 #endif 45 56 46 57 namespace KJS { -
trunk/JavaScriptCore/kjs/interpreter.cpp
r28468 r28479 52 52 #include <stdio.h> 53 53 #include <wtf/Assertions.h> 54 55 #if HAVE(SYS_TIME_H)56 #include <sys/time.h>57 #endif58 59 #if PLATFORM(WIN_OS)60 #include <windows.h>61 #endif62 63 #if PLATFORM(QT)64 #include <QDateTime>65 #endif66 54 67 55 namespace KJS {
Note:
See TracChangeset
for help on using the changeset viewer.