Skip to content

Commit

Permalink
[Win] Remove unused method ChromeClient::setLastSetCursorToCurrentCursor
Browse files Browse the repository at this point in the history
https://bugs.webkit.org/show_bug.cgi?id=267983

Reviewed by Fujii Hironori.

Seems like this method was used in old WKL Win plugins code, but it's now just dead code.

* Source/WebCore/loader/EmptyClients.h:
* Source/WebCore/page/ChromeClient.h:
* Source/WebKit/WebProcess/WebCoreSupport/WebChromeClient.h:

Canonical link: https://commits.webkit.org/273392@main
  • Loading branch information
rkirsling committed Jan 24, 2024
1 parent e183df8 commit a80fbc5
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion Source/WebCore/loader/EmptyClients.h
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,6 @@ class EmptyChromeClient : public ChromeClient {
void triggerRenderingUpdate() final { }

#if PLATFORM(WIN)
void setLastSetCursorToCurrentCursor() final { }
void AXStartFrameLoad() final { }
void AXFinishFrameLoad() final { }
#endif
Expand Down
1 change: 0 additions & 1 deletion Source/WebCore/page/ChromeClient.h
Original file line number Diff line number Diff line change
Expand Up @@ -495,7 +495,6 @@ class ChromeClient {
virtual void contentRuleListNotification(const URL&, const ContentRuleListResults&) { };

#if PLATFORM(WIN)
virtual void setLastSetCursorToCurrentCursor() = 0;
virtual void AXStartFrameLoad() = 0;
virtual void AXFinishFrameLoad() = 0;
#endif
Expand Down
1 change: 0 additions & 1 deletion Source/WebKit/WebProcess/WebCoreSupport/WebChromeClient.h
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,6 @@ class WebChromeClient final : public WebCore::ChromeClient {
bool testProcessIncomingSyncMessagesWhenWaitingForSyncReply() final;

#if PLATFORM(WIN)
void setLastSetCursorToCurrentCursor() final { }
void AXStartFrameLoad() final { }
void AXFinishFrameLoad() final { }
#endif
Expand Down

0 comments on commit a80fbc5

Please sign in to comment.