Changeset 148870 in webkit


Ignore:
Timestamp:
Apr 22, 2013 2:58:33 AM (11 years ago)
Author:
commit-queue@webkit.org
Message:

[BlackBerry] Add dummy implementations of DragData::droppedFileSystemId()
https://bugs.webkit.org/show_bug.cgi?id=114861

Patch by Alberto Garcia <agarcia@igalia.com> on 2013-04-22
Reviewed by Carlos Garcia Campos.

  • platform/blackberry/DragDataBlackBerry.cpp:

(WebCore):
(WebCore::DragData::droppedFileSystemId):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r148865 r148870  
     12013-04-22  Alberto Garcia  <agarcia@igalia.com>
     2
     3        [BlackBerry] Add dummy implementations of DragData::droppedFileSystemId()
     4        https://bugs.webkit.org/show_bug.cgi?id=114861
     5
     6        Reviewed by Carlos Garcia Campos.
     7
     8        * platform/blackberry/DragDataBlackBerry.cpp:
     9        (WebCore):
     10        (WebCore::DragData::droppedFileSystemId):
     11
    1122013-04-22  Mihai Maerean  <mmaerean@adobe.com>
    213
  • trunk/Source/WebCore/platform/blackberry/DragDataBlackBerry.cpp

    r127757 r148870  
    9393}
    9494
     95#if ENABLE(FILE_SYSTEM)
     96String DragData::droppedFileSystemId() const
     97{
     98    notImplemented();
     99    return String();
     100}
     101#endif
     102
    95103} // namespace WebCore
Note: See TracChangeset for help on using the changeset viewer.