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

Unified Diff: webkit/plugins/npapi/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/npapi/webplugin_impl.cc
diff --git a/webkit/plugins/npapi/webplugin_impl.cc b/webkit/plugins/npapi/webplugin_impl.cc
index a8b9672ffaf33c554acf329e3827aa82fecec8cc..5839343e51ab837cfe87606397566805f9a24595 100644
--- a/webkit/plugins/npapi/webplugin_impl.cc
+++ b/webkit/plugins/npapi/webplugin_impl.cc
@@ -420,6 +420,15 @@ bool WebPluginImpl::handleInputEvent(
return delegate_->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 WebURLResponse& response) {
ignore_response_error_ = false;

Powered by Google App Engine
This is Rietveld 408576698