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

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

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.cc
diff --git a/webkit/plugins/ppapi/ppapi_webplugin_impl.cc b/webkit/plugins/ppapi/ppapi_webplugin_impl.cc
index 04161408bce499a3a82557deeb2f25d694b50dd0..4e76c757d74cd6d917858cdba1aa06d75d6b3982 100644
--- a/webkit/plugins/ppapi/ppapi_webplugin_impl.cc
+++ b/webkit/plugins/ppapi/ppapi_webplugin_impl.cc
@@ -185,6 +185,15 @@ bool WebPluginImpl::handleInputEvent(const WebKit::WebInputEvent& event,
return instance_->HandleInputEvent(event, &cursor_info);
}
+bool WebPluginImpl::handleDragStatusUpdate(
+ WebKit::WebDragStatus dragStatus,
+ const WebKit::WebDragData& drag_data,
+ WebKit::WebDragOperationsMask drag_mask,
+ const WebKit::WebPoint& position,
+ const WebKit::WebPoint& screenPosition) {
+ return false;
+}
+
void WebPluginImpl::didReceiveResponse(
const WebKit::WebURLResponse& response) {
DCHECK(!document_loader_);

Powered by Google App Engine
This is Rietveld 408576698