Skip to content

Commit

Permalink
Fix build warning in WebKit2/WebProcess module.
Browse files Browse the repository at this point in the history
https://bugs.webkit.org/show_bug.cgi?id=138410

Patch by Shivakumar JM <shiva.jm@samsung.com> on 2014-11-05
Reviewed by Alexey Proskuryakov.

Fix build warning by removing parameter name

* WebProcess/WebPage/WebPageOverlay.h:
(WebKit::WebPageOverlay::Client::prepareForActionMenu):

Canonical link: https://commits.webkit.org/156236@main
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@175616 268f45cc-cd09-0410-ab3c-d52691b4dbfc
  • Loading branch information
Shivakumar J M authored and webkit-commit-queue committed Nov 5, 2014
1 parent 5aa01fe commit cb83eda
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions Source/WebKit2/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
2014-11-05 Shivakumar JM <shiva.jm@samsung.com>

Fix build warning in WebKit2/WebProcess module.
https://bugs.webkit.org/show_bug.cgi?id=138410

Reviewed by Alexey Proskuryakov.

Fix build warning by removing parameter name

* WebProcess/WebPage/WebPageOverlay.h:
(WebKit::WebPageOverlay::Client::prepareForActionMenu):

2014-11-05 Antti Koivisto <antti@apple.com>

Move HTTPHeaderMap encoding to the class
Expand Down
2 changes: 1 addition & 1 deletion Source/WebKit2/WebProcess/WebPage/WebPageOverlay.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class WebPageOverlay : public API::ObjectImpl<API::Object::Type::BundlePageOverl
virtual void drawRect(WebPageOverlay&, WebCore::GraphicsContext&, const WebCore::IntRect& dirtyRect) = 0;
virtual bool mouseEvent(WebPageOverlay&, const WebCore::PlatformMouseEvent&) = 0;
virtual void didScrollFrame(WebPageOverlay&, WebFrame*) { }
virtual bool prepareForActionMenu(WebPageOverlay&, RefPtr<API::Object>& userData) { return false; }
virtual bool prepareForActionMenu(WebPageOverlay&, RefPtr<API::Object>&) { return false; }

virtual bool copyAccessibilityAttributeStringValueForPoint(WebPageOverlay&, String /* attribute */, WebCore::FloatPoint /* parameter */, String& /* value */) { return false; }
virtual bool copyAccessibilityAttributeBoolValueForPoint(WebPageOverlay&, String /* attribute */, WebCore::FloatPoint /* parameter */, bool& /* value */) { return false; }
Expand Down

0 comments on commit cb83eda

Please sign in to comment.