Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1206)

Unified Diff: third_party/WebKit/public/web/WebPlugin.h

Issue 1463823003: Return a enumeration of the state of handling of InputEvents. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/public/web/WebPlugin.h
diff --git a/third_party/WebKit/public/web/WebPlugin.h b/third_party/WebKit/public/web/WebPlugin.h
index 58888f6c19f5ac8a9e14772bec48341826a986c4..0d979f4652a3859d1c9567326d792e080cf919a7 100644
--- a/third_party/WebKit/public/web/WebPlugin.h
+++ b/third_party/WebKit/public/web/WebPlugin.h
@@ -109,7 +109,7 @@ public:
virtual void updateVisibility(bool) = 0;
virtual bool acceptsInputEvents() = 0;
- virtual bool handleInputEvent(const WebInputEvent&, WebCursorInfo&) = 0;
+ virtual WebInputEventResult handleInputEvent(const WebInputEvent&, WebCursorInfo&) = 0;
virtual bool handleDragStatusUpdate(WebDragStatus, const WebDragData&, WebDragOperationsMask, const WebPoint& position, const WebPoint& screenPosition) { return false; }

Powered by Google App Engine
This is Rietveld 408576698