diff options
Diffstat (limited to 'Source/JavaScriptCore/runtime/JSDateMath.h')
-rw-r--r-- | Source/JavaScriptCore/runtime/JSDateMath.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/JavaScriptCore/runtime/JSDateMath.h b/Source/JavaScriptCore/runtime/JSDateMath.h index c7fb5a975..a6dd96f99 100644 --- a/Source/JavaScriptCore/runtime/JSDateMath.h +++ b/Source/JavaScriptCore/runtime/JSDateMath.h @@ -49,13 +49,12 @@ namespace JSC { class ExecState; -class UString; void msToGregorianDateTime(ExecState*, double, bool outputIsUTC, GregorianDateTime&); double gregorianDateTimeToMS(ExecState*, const GregorianDateTime&, double, bool inputIsUTC); double getUTCOffset(ExecState*); double parseDateFromNullTerminatedCharacters(ExecState*, const char* dateString); -double parseDate(ExecState*, const UString&); +double parseDate(ExecState*, const WTF::String&); } // namespace JSC |