⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 124290 in webkit


Ignore:
Timestamp:
Jul 31, 2012, 8:29:31 PM (14 years ago)
Author:
yosin@chromium.org
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".

Location:
trunk/Source
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r124282 r124290  
     12012-07-31  Yoshifumi Inoue  <yosin@chromium.org>
     2
     3        [Chromium] Enable ENABLE_INPUT_TYPE_TIME_MULTIPLE_FIELDS
     4        https://bugs.webkit.org/show_bug.cgi?id=92822
     5
     6        Reviewed by Kent Tamura.
     7
     8        This patch touches header files for compiling files which contains
     9        ENABLE_INPUT_TYPE_TIME_MULTIPLE_FIELDS.
     10
     11        No new tests. This patch doesn't change behavior.
     12
     13        * platform/text/DateTimeFormat.h:
     14        * platform/text/LocaleICU.h:
     15        * platform/text/LocaleWin.h:
     16        * platform/text/LocalizedDate.h:
     17        * platform/text/LocalizedNumber.h:
     18        * platform/text/mac/LocaleMac.h:
     19
    1202012-07-30  Ryosuke Niwa  <rniwa@webkit.org>
    221
  • trunk/Source/WebCore/platform/text/DateTimeFormat.h

    r121525 r124290  
    109109
    110110#endif
    111 
    112111#endif // DateTimeFormat_h
  • trunk/Source/WebCore/platform/text/LocaleICU.h

    r121415 r124290  
    134134};
    135135
    136 }
     136} // namespace WebCore
    137137#endif
  • trunk/Source/WebCore/platform/text/LocaleWin.h

    r122303 r124290  
    9595};
    9696
    97 }
     97} // namespace WebCore
    9898#endif
  • trunk/Source/WebCore/platform/text/LocalizedDate.h

    r121415 r124290  
    6161// The first day of a week. 0 is Sunday, and 6 is Saturday.
    6262unsigned firstDayOfWeek();
    63 
    6463#endif
    6564
  • trunk/Source/WebCore/platform/text/LocalizedNumber.h

    r121404 r124290  
    5151String convertFromLocalizedNumber(const String&);
    5252
    53 
    5453#if ENABLE(INPUT_TYPE_TIME_MULTIPLE_FIELDS)
    5554// Returns localized decimal separator, e.g. "." for English, "," for French.
  • trunk/Source/WebCore/platform/text/mac/LocaleMac.h

    r122430 r124290  
    8686};
    8787
    88 }
     88} // namespace WebCore
    8989#endif
  • trunk/Source/WebKit/chromium/ChangeLog

    r124288 r124290  
     12012-07-31  Yoshifumi Inoue  <yosin@chromium.org>
     2
     3        [Chromium] Enable ENABLE_INPUT_TYPE_TIME_MULTIPLE_FIELDS
     4        https://bugs.webkit.org/show_bug.cgi?id=92822
     5
     6        Reviewed by Kent Tamura.
     7
     8        This patch enables ENABLE_INPUT_TYPE_TIME_MULTIPLE_FIELDS for Chromium
     9        port except for Android.
     10
     11        * features.gypi: Add ENABLE_INPUT_TYPE_TIME_MULTIPLE_FIELDS=1 to "feature_defines"
     12        block of OS != "android".
     13
    1142012-07-31  Yusuf Ozuysal  <yusufo@google.com>
    215
  • trunk/Source/WebKit/chromium/features.gypi

    r123984 r124290  
    171171          'ENABLE_INPUT_SPEECH=1',
    172172          'ENABLE_INPUT_TYPE_COLOR=1',
     173          'ENABLE_INPUT_TYPE_TIME_MULTIPLE_FIELDS=1',
    173174          'ENABLE_JAVASCRIPT_I18N_API=1',
    174175          'ENABLE_LEGACY_NOTIFICATIONS=1',
Note: See TracChangeset for help on using the changeset viewer.