Changeset 67527 in webkit


Ignore:
Timestamp:
Sep 14, 2010 6:59:19 PM (14 years ago)
Author:
abarth@webkit.org
Message:

2010-09-14 Mihai Parparita <mihaip@chromium.org>

Reviewed by Adam Barth.

Send webkit accessibility notifications to Chromium
https://bugs.webkit.org/show_bug.cgi?id=45156

Move printf inside shouldDumpAccessibilityNotifications check.

  • DumpRenderTree/chromium/WebViewHost.cpp: (WebViewHost::postAccessibilityNotification):
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r67524 r67527  
     12010-09-14  Mihai Parparita  <mihaip@chromium.org>
     2
     3        Reviewed by Adam Barth.
     4
     5        Send webkit accessibility notifications to Chromium
     6        https://bugs.webkit.org/show_bug.cgi?id=45156
     7
     8        Move printf inside shouldDumpAccessibilityNotifications check.
     9
     10        * DumpRenderTree/chromium/WebViewHost.cpp:
     11        (WebViewHost::postAccessibilityNotification):
     12
    1132010-09-14  Tony Chang  <tony@chromium.org>
    214
  • trunk/WebKitTools/DumpRenderTree/chromium/WebViewHost.cpp

    r67498 r67527  
    493493void WebViewHost::postAccessibilityNotification(const WebAccessibilityObject& obj, WebAccessibilityNotification notification)
    494494{
    495     printf("AccessibilityNotification - ");
    496    
    497495    if (m_shell->accessibilityController()->shouldDumpAccessibilityNotifications()) {
     496        printf("AccessibilityNotification - ");
     497
    498498        switch (notification) {
    499499        case WebAccessibilityNotificationActiveDescendantChanged:
Note: See TracChangeset for help on using the changeset viewer.