| Index: content/renderer/browser_plugin/browser_plugin.cc
|
| diff --git a/content/renderer/browser_plugin/browser_plugin.cc b/content/renderer/browser_plugin/browser_plugin.cc
|
| index ed0f293678b2d13a4c5398ce6640fec90470115a..8edee29bc5d2e8945e91d8ea92915396fdbf8721 100644
|
| --- a/content/renderer/browser_plugin/browser_plugin.cc
|
| +++ b/content/renderer/browser_plugin/browser_plugin.cc
|
| @@ -723,6 +723,24 @@ bool BrowserPlugin::handleInputEvent(const WebKit::WebInputEvent& event,
|
| return handled;
|
| }
|
|
|
| +bool BrowserPlugin::handleDragStatusUpdate(WebKit::WebDragStatus drag_status,
|
| + const WebKit::WebDragData& drag_data,
|
| + WebKit::WebDragOperationsMask mask,
|
| + const WebKit::WebPoint& position,
|
| + const WebKit::WebPoint& screen) {
|
| + if (guest_crashed_ || !navigate_src_sent_)
|
| + return false;
|
| + BrowserPluginManager::Get()->Send(
|
| + new BrowserPluginHostMsg_DragStatusUpdate(
|
| + render_view_->GetRoutingID(),
|
| + instance_id_,
|
| + drag_status,
|
| + WebDropData(drag_data),
|
| + mask,
|
| + position));
|
| + return false;
|
| +}
|
| +
|
| void BrowserPlugin::didReceiveResponse(
|
| const WebKit::WebURLResponse& response) {
|
| }
|
|
|