Changeset 102492 in webkit


Ignore:
Timestamp:
Dec 9, 2011 5:01:02 PM (12 years ago)
Author:
commit-queue@webkit.org
Message:

Small style fix on DragDataBlackBerry.cpp
https://bugs.webkit.org/show_bug.cgi?id=74171

Patch by Mary Wu <mary.wu@torchmobile.com.cn> on 2011-12-09
Reviewed by Rob Buis.

Style fix, no function impact, no new tests.

  • platform/blackberry/DragDataBlackBerry.cpp:

(WebCore::DragData::containsURL):
(WebCore::DragData::asFilenames):
(WebCore::DragData::asURL):
(WebCore::DragData::asFragment):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r102486 r102492  
     12011-12-09  Mary Wu  <mary.wu@torchmobile.com.cn>
     2
     3        Small style fix on DragDataBlackBerry.cpp
     4        https://bugs.webkit.org/show_bug.cgi?id=74171
     5
     6        Reviewed by Rob Buis.
     7
     8        Style fix, no function impact, no new tests.
     9
     10        * platform/blackberry/DragDataBlackBerry.cpp:
     11        (WebCore::DragData::containsURL):
     12        (WebCore::DragData::asFilenames):
     13        (WebCore::DragData::asURL):
     14        (WebCore::DragData::asFragment):
     15
    1162011-12-09  Tony Chang  <tony@chromium.org>
    217
  • trunk/Source/WebCore/platform/blackberry/DragDataBlackBerry.cpp

    r101936 r102492  
    5959}
    6060
    61 bool DragData::containsURL(Frame*, FilenameConversionPolicy filenamePolicy) const
     61bool DragData::containsURL(Frame*, FilenameConversionPolicy) const
    6262{
    6363    notImplemented();
     
    6565}
    6666
    67 void DragData::asFilenames(WTF::Vector<String, 0u>& result) const
     67void DragData::asFilenames(Vector<String>&) const
    6868{
    69     // FIXME: remove explicit 0 size in result template once this is implemented
    7069    notImplemented();
    7170}
     
    8382}
    8483
    85 String DragData::asURL(Frame*, FilenameConversionPolicy filenamePolicy, String* title) const
     84String DragData::asURL(Frame*, FilenameConversionPolicy, String*) const
    8685{
    8786    notImplemented();
     
    8988}
    9089
    91 WTF::PassRefPtr<DocumentFragment> DragData::asFragment(Frame*, PassRefPtr<Range> context,
    92                                             bool allowPlainText, bool& chosePlainText) const
     90PassRefPtr<DocumentFragment> DragData::asFragment(Frame*, PassRefPtr<Range>, bool, bool&) const
    9391{
    9492    notImplemented();
Note: See TracChangeset for help on using the changeset viewer.