| 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 1d8bdb6878044497536130ff05dba2b51b0d9221..7971f45567c319c6f259184f44c7748dddccbd4e 100644
|
| --- a/content/renderer/browser_plugin/browser_plugin.cc
|
| +++ b/content/renderer/browser_plugin/browser_plugin.cc
|
| @@ -19,6 +19,7 @@
|
| #include "content/renderer/render_process_impl.h"
|
| #include "content/renderer/render_thread_impl.h"
|
| #include "skia/ext/platform_canvas.h"
|
| +#include "third_party/WebKit/Source/Platform/chromium/public/WebPoint.h"
|
| #include "third_party/WebKit/Source/WebKit/chromium/public/WebBindings.h"
|
| #include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h"
|
| #include "third_party/WebKit/Source/WebKit/chromium/public/WebElement.h"
|
| @@ -33,7 +34,6 @@ using WebKit::WebCanvas;
|
| using WebKit::WebPlugin;
|
| using WebKit::WebPluginContainer;
|
| using WebKit::WebPluginParams;
|
| -using WebKit::WebPoint;
|
| using WebKit::WebString;
|
| using WebKit::WebRect;
|
| using WebKit::WebURL;
|
| @@ -587,6 +587,15 @@ bool BrowserPlugin::handleInputEvent(const WebKit::WebInputEvent& event,
|
| return handled;
|
| }
|
|
|
| +bool BrowserPlugin::handleDragStatusUpdate(
|
| + WebKit::WebDragStatus dragStatus,
|
| + const WebKit::WebDragData& drag_data,
|
| + WebKit::WebDragOperationsMask drag_mask,
|
| + const WebKit::WebPoint& position,
|
| + const WebKit::WebPoint& screenPosition) {
|
| + return false;
|
| +}
|
| +
|
| void BrowserPlugin::didReceiveResponse(
|
| const WebKit::WebURLResponse& response) {
|
| }
|
|
|