Changeset 55678 in webkit


Ignore:
Timestamp:
Mar 8, 2010 12:22:09 PM (14 years ago)
Author:
beidson@apple.com
Message:

Followup to https://bugs.webkit.org/show_bug.cgi?id=35532

Reviewed by NOBODY (but suggested by Steve Falkenburg and fixing a boneheaded mistake on my part last week)

  • DumpRenderTree/win/LayoutTestControllerWin.cpp:

(LayoutTestController::apiTestGoToCurrentBackForwardItem): Can't pass in a null BOOL to WebKit APIs.

Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r55671 r55678  
     12010-03-08  Brady Eidson  <beidson@apple.com>
     2
     3        Reviewed by NOBODY (but suggested by Steve Falkenburg and fixing a boneheaded mistake on my part last week)
     4
     5        Followup to https://bugs.webkit.org/show_bug.cgi?id=35532
     6
     7        * DumpRenderTree/win/LayoutTestControllerWin.cpp:
     8        (LayoutTestController::apiTestGoToCurrentBackForwardItem): Can't pass in a null BOOL to WebKit APIs.
     9
    1102010-03-08  Chris Jerdonek  <cjerdonek@webkit.org>
    211
  • trunk/WebKitTools/DumpRenderTree/win/LayoutTestControllerWin.cpp

    r55582 r55678  
    11901190        return;
    11911191
    1192     webView->goToBackForwardItem(item.get(), 0);
    1193 }
     1192    BOOL success;
     1193    webView->goToBackForwardItem(item.get(), &success);
     1194}
Note: See TracChangeset for help on using the changeset viewer.