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

Unified Diff: content/browser/browser_plugin/browser_plugin_guest_helper.cc

Issue 12086095: Fixed drag and drop into and out of Browser Plugin. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Re-disabled when command line flag not present. Created 7 years, 11 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: content/browser/browser_plugin/browser_plugin_guest_helper.cc
diff --git a/content/browser/browser_plugin/browser_plugin_guest_helper.cc b/content/browser/browser_plugin/browser_plugin_guest_helper.cc
index 5a9d6e04614d441a8f0da51954b33f4f58000aa9..51cb2779a9de7f5e99e2a014a2ea0eafab55ba56 100644
--- a/content/browser/browser_plugin/browser_plugin_guest_helper.cc
+++ b/content/browser/browser_plugin/browser_plugin_guest_helper.cc
@@ -32,7 +32,8 @@ bool BrowserPluginGuestHelper::OnMessageReceived(
bool BrowserPluginGuestHelper::ShouldForwardToBrowserPluginGuest(
const IPC::Message& message) {
switch (message.type()) {
- case DragHostMsg_UpdateDragCursor::ID:
+ case DragHostMsg_StartDragging::ID:
+ case DragHostMsg_DragStopped::ID:
case ViewHostMsg_HandleInputEvent_ACK::ID:
case ViewHostMsg_HasTouchEventHandlers::ID:
case ViewHostMsg_SetCursor::ID:

Powered by Google App Engine
This is Rietveld 408576698