Changeset 150362 in webkit


Ignore:
Timestamp:
May 20, 2013, 2:37:05 AM (12 years ago)
Author:
commit-queue@webkit.org
Message:

[BlackBerry] LocalizedStringsBlackBerry: add dummy text track strings
https://bugs.webkit.org/show_bug.cgi?id=116300

Patch by Xan Lopez <xlopez@igalia.com> on 2013-05-20
Reviewed by Rob Buis.

These are dummy implementations necessary to make WebKit link.

  • platform/blackberry/LocalizedStringsBlackBerry.cpp:

(WebCore::weekFormatInLDML):
(WebCore):
(WebCore::textTrackClosedCaptionsText):
(WebCore::textTrackSubtitlesText):
(WebCore::textTrackOffText):
(WebCore::textTrackNoLabelText):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r150358 r150362  
     12013-05-20  Xan Lopez  <xlopez@igalia.com>
     2
     3        [BlackBerry] LocalizedStringsBlackBerry: add dummy text track strings
     4        https://bugs.webkit.org/show_bug.cgi?id=116300
     5
     6        Reviewed by Rob Buis.
     7
     8        These are dummy implementations necessary to make WebKit link.
     9
     10        * platform/blackberry/LocalizedStringsBlackBerry.cpp:
     11        (WebCore::weekFormatInLDML):
     12        (WebCore):
     13        (WebCore::textTrackClosedCaptionsText):
     14        (WebCore::textTrackSubtitlesText):
     15        (WebCore::textTrackOffText):
     16        (WebCore::textTrackNoLabelText):
     17
    1182013-05-19  Darin Adler  <darin@apple.com>
    219
  • trunk/Source/WebCore/platform/blackberry/LocalizedStringsBlackBerry.cpp

    r147520 r150362  
    636636}
    637637
     638String weekFormatInLDML()
     639{
     640    notImplemented();
     641    return String();
     642}
     643
     644#if ENABLE(VIDEO_TRACK)
     645String textTrackClosedCaptionsText()
     646{
     647    notImplemented();
     648    return String();
     649}
     650
     651String textTrackSubtitlesText()
     652{
     653    notImplemented();
     654    return String();
     655}
     656
     657String textTrackOffText()
     658{
     659    notImplemented();
     660    return String();
     661}
     662
     663String textTrackNoLabelText()
     664{
     665    notImplemented();
     666    return String();
     667}
     668#endif
     669
    638670} // namespace WebCore
Note: See TracChangeset for help on using the changeset viewer.