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

Unified Diff: webkit/plugins/ppapi/ppapi_webplugin_impl.h

Issue 11043022: plugins: Stub implementation for accepting dragged data. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 2 months 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: webkit/plugins/ppapi/ppapi_webplugin_impl.h
diff --git a/webkit/plugins/ppapi/ppapi_webplugin_impl.h b/webkit/plugins/ppapi/ppapi_webplugin_impl.h
index 0ea0080d0082f47bf40baa20c509de39b1cfc11e..31e8f3ab7207e756b8620ad4698d5b2be07989ec 100644
--- a/webkit/plugins/ppapi/ppapi_webplugin_impl.h
+++ b/webkit/plugins/ppapi/ppapi_webplugin_impl.h
@@ -55,6 +55,12 @@ class WebPluginImpl : public WebKit::WebPlugin {
virtual bool acceptsInputEvents();
virtual bool handleInputEvent(const WebKit::WebInputEvent& event,
WebKit::WebCursorInfo& cursor_info);
+ virtual bool handleDragStatusUpdate(
+ WebKit::WebDragStatus dragStatus,
+ const WebKit::WebDragData& drag_data,
+ WebKit::WebDragOperationsMask drag_mask,
+ const WebKit::WebPoint& position,
+ const WebKit::WebPoint& screenPosition) OVERRIDE;
virtual void didReceiveResponse(const WebKit::WebURLResponse& response);
virtual void didReceiveData(const char* data, int data_length);
virtual void didFinishLoading();

Powered by Google App Engine
This is Rietveld 408576698