Title: [124290] trunk/Source
Revision
124290
Author
yo...@chromium.org
Date
2012-07-31 20:29:31 -0700 (Tue, 31 Jul 2012)

Log Message

[Chromium] Enable ENABLE_INPUT_TYPE_TIME_MULTIPLE_FIELDS
https://bugs.webkit.org/show_bug.cgi?id=92822

Reviewed by Kent Tamura.

Source/WebCore:

This patch touches header files for compiling files which contains
ENABLE_INPUT_TYPE_TIME_MULTIPLE_FIELDS.

No new tests. This patch doesn't change behavior.

* platform/text/DateTimeFormat.h:
* platform/text/LocaleICU.h:
* platform/text/LocaleWin.h:
* platform/text/LocalizedDate.h:
* platform/text/LocalizedNumber.h:
* platform/text/mac/LocaleMac.h:

Source/WebKit/chromium:

This patch enables ENABLE_INPUT_TYPE_TIME_MULTIPLE_FIELDS for Chromium
port except for Android.

* features.gypi: Add ENABLE_INPUT_TYPE_TIME_MULTIPLE_FIELDS=1 to "feature_defines"
block of OS != "android".

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (124289 => 124290)


--- trunk/Source/WebCore/ChangeLog	2012-08-01 03:22:47 UTC (rev 124289)
+++ trunk/Source/WebCore/ChangeLog	2012-08-01 03:29:31 UTC (rev 124290)
@@ -1,3 +1,22 @@
+2012-07-31  Yoshifumi Inoue  <yo...@chromium.org>
+
+        [Chromium] Enable ENABLE_INPUT_TYPE_TIME_MULTIPLE_FIELDS
+        https://bugs.webkit.org/show_bug.cgi?id=92822
+
+        Reviewed by Kent Tamura.
+
+        This patch touches header files for compiling files which contains
+        ENABLE_INPUT_TYPE_TIME_MULTIPLE_FIELDS.
+
+        No new tests. This patch doesn't change behavior.
+
+        * platform/text/DateTimeFormat.h:
+        * platform/text/LocaleICU.h:
+        * platform/text/LocaleWin.h:
+        * platform/text/LocalizedDate.h:
+        * platform/text/LocalizedNumber.h:
+        * platform/text/mac/LocaleMac.h:
+
 2012-07-30  Ryosuke Niwa  <rn...@webkit.org>
 
         REGRESSION(r120979): Node list returned by getElementsByTagNameNS isn't invalidated when children changes

Modified: trunk/Source/WebCore/platform/text/DateTimeFormat.h (124289 => 124290)


--- trunk/Source/WebCore/platform/text/DateTimeFormat.h	2012-08-01 03:22:47 UTC (rev 124289)
+++ trunk/Source/WebCore/platform/text/DateTimeFormat.h	2012-08-01 03:29:31 UTC (rev 124290)
@@ -108,5 +108,4 @@
 } // namespace WebCore
 
 #endif
-
 #endif // DateTimeFormat_h

Modified: trunk/Source/WebCore/platform/text/LocaleICU.h (124289 => 124290)


--- trunk/Source/WebCore/platform/text/LocaleICU.h	2012-08-01 03:22:47 UTC (rev 124289)
+++ trunk/Source/WebCore/platform/text/LocaleICU.h	2012-08-01 03:29:31 UTC (rev 124290)
@@ -133,5 +133,5 @@
 #endif
 };
 
-}
+} // namespace WebCore
 #endif

Modified: trunk/Source/WebCore/platform/text/LocaleWin.h (124289 => 124290)


--- trunk/Source/WebCore/platform/text/LocaleWin.h	2012-08-01 03:22:47 UTC (rev 124289)
+++ trunk/Source/WebCore/platform/text/LocaleWin.h	2012-08-01 03:29:31 UTC (rev 124290)
@@ -94,5 +94,5 @@
 #endif
 };
 
-}
+} // namespace WebCore
 #endif

Modified: trunk/Source/WebCore/platform/text/LocalizedDate.h (124289 => 124290)


--- trunk/Source/WebCore/platform/text/LocalizedDate.h	2012-08-01 03:22:47 UTC (rev 124289)
+++ trunk/Source/WebCore/platform/text/LocalizedDate.h	2012-08-01 03:29:31 UTC (rev 124290)
@@ -60,7 +60,6 @@
 
 // The first day of a week. 0 is Sunday, and 6 is Saturday.
 unsigned firstDayOfWeek();
-
 #endif
 
 #if ENABLE(INPUT_TYPE_TIME_MULTIPLE_FIELDS)

Modified: trunk/Source/WebCore/platform/text/LocalizedNumber.h (124289 => 124290)


--- trunk/Source/WebCore/platform/text/LocalizedNumber.h	2012-08-01 03:22:47 UTC (rev 124289)
+++ trunk/Source/WebCore/platform/text/LocalizedNumber.h	2012-08-01 03:29:31 UTC (rev 124290)
@@ -50,7 +50,6 @@
 // responsible to check the format of the resultant string.
 String convertFromLocalizedNumber(const String&);
 
-
 #if ENABLE(INPUT_TYPE_TIME_MULTIPLE_FIELDS)
 // Returns localized decimal separator, e.g. "." for English, "," for French.
 String localizedDecimalSeparator();

Modified: trunk/Source/WebCore/platform/text/mac/LocaleMac.h (124289 => 124290)


--- trunk/Source/WebCore/platform/text/mac/LocaleMac.h	2012-08-01 03:22:47 UTC (rev 124289)
+++ trunk/Source/WebCore/platform/text/mac/LocaleMac.h	2012-08-01 03:29:31 UTC (rev 124290)
@@ -85,5 +85,5 @@
 #endif
 };
 
-}
+} // namespace WebCore
 #endif

Modified: trunk/Source/WebKit/chromium/ChangeLog (124289 => 124290)


--- trunk/Source/WebKit/chromium/ChangeLog	2012-08-01 03:22:47 UTC (rev 124289)
+++ trunk/Source/WebKit/chromium/ChangeLog	2012-08-01 03:29:31 UTC (rev 124290)
@@ -1,3 +1,16 @@
+2012-07-31  Yoshifumi Inoue  <yo...@chromium.org>
+
+        [Chromium] Enable ENABLE_INPUT_TYPE_TIME_MULTIPLE_FIELDS
+        https://bugs.webkit.org/show_bug.cgi?id=92822
+
+        Reviewed by Kent Tamura.
+
+        This patch enables ENABLE_INPUT_TYPE_TIME_MULTIPLE_FIELDS for Chromium
+        port except for Android.
+
+        * features.gypi: Add ENABLE_INPUT_TYPE_TIME_MULTIPLE_FIELDS=1 to "feature_defines"
+        block of OS != "android".
+
 2012-07-31  Yusuf Ozuysal  <yus...@google.com>
 
         [chromium]Upstream WebViewImpl:StartPageScaleAnimation changes for Chrome for Android

Modified: trunk/Source/WebKit/chromium/features.gypi (124289 => 124290)


--- trunk/Source/WebKit/chromium/features.gypi	2012-08-01 03:22:47 UTC (rev 124289)
+++ trunk/Source/WebKit/chromium/features.gypi	2012-08-01 03:29:31 UTC (rev 124290)
@@ -170,6 +170,7 @@
           'ENABLE_CALENDAR_PICKER=1',
           'ENABLE_INPUT_SPEECH=1',
           'ENABLE_INPUT_TYPE_COLOR=1',
+          'ENABLE_INPUT_TYPE_TIME_MULTIPLE_FIELDS=1',
           'ENABLE_JAVASCRIPT_I18N_API=1',
           'ENABLE_LEGACY_NOTIFICATIONS=1',
           'ENABLE_MEDIA_CAPTURE=0',
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to