Title: [132775] trunk/Source/WebKit/chromium
- Revision
- 132775
- Author
- [email protected]
- Date
- 2012-10-29 02:11:08 -0700 (Mon, 29 Oct 2012)
Log Message
[Chromium-linux] Fix build.
* tests/LocalizedNumberICUTest.cpp:
(testNumberIsReversible): Rename an argument.
(testDecimalSeparator): Ditto.
Modified Paths
Diff
Modified: trunk/Source/WebKit/chromium/ChangeLog (132774 => 132775)
--- trunk/Source/WebKit/chromium/ChangeLog 2012-10-29 08:51:17 UTC (rev 132774)
+++ trunk/Source/WebKit/chromium/ChangeLog 2012-10-29 09:11:08 UTC (rev 132775)
@@ -1,3 +1,11 @@
+2012-10-29 Kent Tamura <[email protected]>
+
+ [Chromium-linux] Fix build.
+
+ * tests/LocalizedNumberICUTest.cpp:
+ (testNumberIsReversible): Rename an argument.
+ (testDecimalSeparator): Ditto.
+
2012-10-28 Kent Tamura <[email protected]>
Rename Localizer to Locale
Modified: trunk/Source/WebKit/chromium/tests/LocalizedNumberICUTest.cpp (132774 => 132775)
--- trunk/Source/WebKit/chromium/tests/LocalizedNumberICUTest.cpp 2012-10-29 08:51:17 UTC (rev 132774)
+++ trunk/Source/WebKit/chromium/tests/LocalizedNumberICUTest.cpp 2012-10-29 09:11:08 UTC (rev 132775)
@@ -36,9 +36,9 @@
using namespace WebCore;
-void testNumberIsReversible(const AtomicString& locale, const char* original, const char* shouldHave = 0)
+void testNumberIsReversible(const AtomicString& localeIdentifier, const char* original, const char* shouldHave = 0)
{
- OwnPtr<Locale> locale = Locale::create(locale);
+ OwnPtr<Locale> locale = Locale::create(localeIdentifier);
String localized = locale->convertToLocalizedNumber(original);
if (shouldHave)
EXPECT_TRUE(localized.contains(shouldHave));
@@ -82,9 +82,9 @@
#if ENABLE(INPUT_MULTIPLE_FIELDS_UI)
-static String testDecimalSeparator(const AtomicString& locale)
+static String testDecimalSeparator(const AtomicString& localeIdentifier)
{
- OwnPtr<Locale> locale = Locale::create(locale);
+ OwnPtr<Locale> locale = Locale::create(localeIdentifier);
return locale->localizedDecimalSeparator();
}
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes