Changeset 109749 in webkit


Ignore:
Timestamp:
Mar 5, 2012 8:26:55 AM (12 years ago)
Author:
rwlbuis@webkit.org
Message:

[BlackBerry] Update Tools/DumpRenderTree
https://bugs.webkit.org/show_bug.cgi?id=80287

Reviewed by Antonio Gomes.

Update so we are sure we can build our implementation of DRT.

  • DumpRenderTree/DumpRenderTree.h: include DumpRenderTreeBlackBerry.h.
  • DumpRenderTree/PixelDumpSupport.cpp: include PixelDumpSupportBlackBerry.h.
  • DumpRenderTree/blackberry/AccessibilityControllerBlackBerry.cpp:

(AccessibilityController::addNotificationListener): add missing hook.
(AccessibilityController::removeNotificationListener): add missing hook.

  • DumpRenderTree/blackberry/AccessibilityUIElementBlackBerry.cpp:

(AccessibilityUIElement::isSelectedOptionActive): add missing hook.

  • DumpRenderTree/blackberry/LayoutTestControllerBlackBerry.cpp:

(LayoutTestController::setMockSpeechInputDumpRect): add missing hook.
(LayoutTestController::simulateDesktopNotificationClick): add missing hook.

Location:
trunk/Tools
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r109748 r109749  
     12012-03-05  Rob Buis  <rbuis@rim.com>
     2
     3        [BlackBerry] Update Tools/DumpRenderTree
     4        https://bugs.webkit.org/show_bug.cgi?id=80287
     5
     6        Reviewed by Antonio Gomes.
     7
     8        Update so we are sure we can build our implementation of DRT.
     9
     10        * DumpRenderTree/DumpRenderTree.h: include DumpRenderTreeBlackBerry.h.
     11        * DumpRenderTree/PixelDumpSupport.cpp: include PixelDumpSupportBlackBerry.h.
     12        * DumpRenderTree/blackberry/AccessibilityControllerBlackBerry.cpp:
     13        (AccessibilityController::addNotificationListener): add missing hook.
     14        (AccessibilityController::removeNotificationListener): add missing hook.
     15        * DumpRenderTree/blackberry/AccessibilityUIElementBlackBerry.cpp:
     16        (AccessibilityUIElement::isSelectedOptionActive): add missing hook.
     17        * DumpRenderTree/blackberry/LayoutTestControllerBlackBerry.cpp:
     18        (LayoutTestController::setMockSpeechInputDumpRect): add missing hook.
     19        (LayoutTestController::simulateDesktopNotificationClick): add missing hook.
     20
    1212012-03-05  No'am Rosenthal  <noam.rosenthal@nokia.com>
    222
  • trunk/Tools/DumpRenderTree/DumpRenderTree.h

    r95007 r109749  
    4545#elif PLATFORM(EFL)
    4646#include "DumpRenderTreeEfl.h"
     47#elif PLATFORM(BLACKBERRY)
     48#include "DumpRenderTreeBlackBerry.h"
    4749#endif
    4850
  • trunk/Tools/DumpRenderTree/PixelDumpSupport.cpp

    r98034 r109749  
    4242#elif USE(CAIRO)
    4343#include "PixelDumpSupportCairo.h"
     44#elif PLATFORM(BLACKBERRY)
     45#include "PixelDumpSupportBlackBerry.h"
    4446#endif
    4547
  • trunk/Tools/DumpRenderTree/blackberry/AccessibilityControllerBlackBerry.cpp

    r107129 r109749  
    6969}
    7070
    71 void AccessibilityController::addNotificationListener(PlatformUIElement, JSObjectRef)
     71bool AccessibilityController::addNotificationListener(JSObjectRef)
    7272{
    73     notImplemented();
     73    return false;
    7474}
    7575
    76 void AccessibilityController::notificationReceived(PlatformUIElement, const std::string&)
     76void AccessibilityController::removeNotificationListener()
    7777{
    78     notImplemented();
    7978}
    8079
  • trunk/Tools/DumpRenderTree/blackberry/AccessibilityUIElementBlackBerry.cpp

    r107129 r109749  
    509509}
    510510
     511bool AccessibilityUIElement::isSelectedOptionActive() const
     512{
     513    notImplemented();
     514    return false;
     515}
     516
    511517bool AccessibilityUIElement::isVisible() const
    512518{
  • trunk/Tools/DumpRenderTree/blackberry/LayoutTestControllerBlackBerry.cpp

    r107682 r109749  
    898898}
    899899
     900void LayoutTestController::setMockSpeechInputDumpRect(bool)
     901{
     902}
     903
     904void LayoutTestController::simulateDesktopNotificationClick(JSStringRef title)
     905{
     906}
     907
Note: See TracChangeset for help on using the changeset viewer.