Index: Source/WebKit/chromium/tests/LocaleMacTest.cpp |
diff --git a/Source/WebKit/chromium/tests/LocaleMacTest.cpp b/Source/WebKit/chromium/tests/LocaleMacTest.cpp |
index 3c3fcf8722bd15041a1d248bf1f98730951832f2..c74c0fe81cea30946757a4461f0fe0e444fd45cb 100644 |
--- a/Source/WebKit/chromium/tests/LocaleMacTest.cpp |
+++ b/Source/WebKit/chromium/tests/LocaleMacTest.cpp |
@@ -74,7 +74,7 @@ protected: |
OwnPtr<LocaleMac> locale = LocaleMac::create(localeString); |
DateComponents date; |
unsigned end; |
- date.parseWeek(isoString.bloatedCharacters(), isoString.length(), 0, end); |
+ date.parseWeek(isoString, 0, end); |
return locale->formatDateTime(date); |
} |
@@ -83,7 +83,7 @@ protected: |
OwnPtr<LocaleMac> locale = LocaleMac::create(localeString); |
DateComponents date; |
unsigned end; |
- date.parseMonth(isoString.bloatedCharacters(), isoString.length(), 0, end); |
+ date.parseMonth(isoString, 0, end); |
return locale->formatDateTime(date, (useShortFormat ? Locale::FormatTypeShort : Locale::FormatTypeMedium)); |
} |