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

Unified Diff: content/browser/browser_plugin/browser_plugin_guest.h

Issue 18281002: Move WebDropData to content::DropData and split off conversion function. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix Mac build error. Created 7 years, 6 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.h
diff --git a/content/browser/browser_plugin/browser_plugin_guest.h b/content/browser/browser_plugin/browser_plugin_guest.h
index c8579139b6d02ae715af280fa8dcde1a58c80acf..f40488c813bbf50d6599c0c3a080e65a8ef666f6 100644
--- a/content/browser/browser_plugin/browser_plugin_guest.h
+++ b/content/browser/browser_plugin/browser_plugin_guest.h
@@ -52,7 +52,6 @@ struct ViewHostMsg_ShowPopup_Params;
#endif
struct ViewHostMsg_UpdateRect_Params;
class WebCursor;
-struct WebDropData;
namespace cc {
class CompositorFrameAck;
@@ -69,6 +68,7 @@ class BrowserPluginEmbedder;
class BrowserPluginGuestManager;
class RenderProcessHost;
class RenderWidgetHostView;
+struct DropData;
struct MediaStreamRequest;
// A browser plugin guest provides functionality for WebContents to operate in
@@ -333,7 +333,7 @@ class CONTENT_EXPORT BrowserPluginGuest
// renderer.
void OnDragStatusUpdate(int instance_id,
WebKit::WebDragStatus drag_status,
- const WebDropData& drop_data,
+ const DropData& drop_data,
WebKit::WebDragOperationsMask drag_mask,
const gfx::Point& location);
// Instructs the guest to execute an edit command decoded in the embedder.

Powered by Google App Engine
This is Rietveld 408576698