Skip to content

Commit

Permalink
Fix PlayStation build of WebKitTestRunner after 278039@main
Browse files Browse the repository at this point in the history
https://bugs.webkit.org/show_bug.cgi?id=273645

Unreviewed build fix.

Update method signatures.

* Tools/WebKitTestRunner/InjectedBundle/playstation/AccessibilityUIElementPlayStation.cpp:

Canonical link: https://commits.webkit.org/278299@main
  • Loading branch information
donny-dont committed May 3, 2024
1 parent 593a442 commit cf7a630
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -214,25 +214,25 @@ double AccessibilityUIElement::numberAttributeValue(JSStringRef attribute)
return 0;
}

JSValueRef AccessibilityUIElement::uiElementArrayAttributeValue(JSStringRef attribute) const
JSValueRef AccessibilityUIElement::uiElementArrayAttributeValue(JSContextRef, JSStringRef attribute)
{
notImplemented();
return nullptr;
}

JSValueRef AccessibilityUIElement::rowHeaders() const
JSValueRef AccessibilityUIElement::rowHeaders(JSContextRef)
{
notImplemented();
return nullptr;
}

JSValueRef AccessibilityUIElement::columnHeaders() const
JSValueRef AccessibilityUIElement::columnHeaders(JSContextRef)
{
notImplemented();
return nullptr;
}

JSValueRef AccessibilityUIElement::selectedCells() const
JSValueRef AccessibilityUIElement::selectedCells(JSContextRef)
{
notImplemented();
return nullptr;
Expand Down

0 comments on commit cf7a630

Please sign in to comment.