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

Unified Diff: content/public/browser/render_view_host_delegate.h

Issue 9382037: Move ContextMenuParams struct from webkit/glue to content/public/common. The reasons are: (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix mac Created 8 years, 10 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/public/browser/render_view_host_delegate.h
===================================================================
--- content/public/browser/render_view_host_delegate.h (revision 121660)
+++ content/public/browser/render_view_host_delegate.h (working copy)
@@ -27,7 +27,6 @@
class SkBitmap;
class TabContents;
class WebKeyboardEvent;
-struct ContextMenuParams;
struct NativeWebKeyboardEvent;
struct ViewHostMsg_CreateWindow_Params;
struct ViewHostMsg_FrameNavigate_Params;
@@ -49,6 +48,7 @@
class BrowserContext;
class WebContents;
+struct ContextMenuParams;
struct FileChooserParams;
struct GlobalRequestID;
struct Referrer;
@@ -120,7 +120,7 @@
// A context menu should be shown, to be built using the context information
// provided in the supplied params.
- virtual void ShowContextMenu(const ContextMenuParams& params) = 0;
+ virtual void ShowContextMenu(const content::ContextMenuParams& params) = 0;
// Shows a popup menu with the specified items.
// This method should call RenderViewHost::DidSelectPopupMenuItemAt() or

Powered by Google App Engine
This is Rietveld 408576698