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

Unified Diff: content/renderer/pepper_plugin_delegate_impl.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/renderer/pepper_plugin_delegate_impl.h
===================================================================
--- content/renderer/pepper_plugin_delegate_impl.h (revision 121660)
+++ content/renderer/pepper_plugin_delegate_impl.h (working copy)
@@ -33,6 +33,7 @@
namespace content {
class GamepadSharedMemoryReader;
+struct CustomContextMenuContext;
}
namespace gfx {
@@ -61,10 +62,6 @@
struct WebFileChooserParams;
}
-namespace webkit_glue {
-struct CustomContextMenuContext;
-}
-
class TransportDIB;
// This object is NOT thread-safe.
@@ -354,9 +351,9 @@
webkit::ppapi::PPB_Flash_Menu_Impl* menu,
const gfx::Point& position) OVERRIDE;
void OnContextMenuClosed(
- const webkit_glue::CustomContextMenuContext& custom_context);
+ const content::CustomContextMenuContext& custom_context);
void OnCustomContextMenuAction(
- const webkit_glue::CustomContextMenuContext& custom_context,
+ const content::CustomContextMenuContext& custom_context,
unsigned action);
void CompleteShowContextMenu(int request_id,
bool did_select,

Powered by Google App Engine
This is Rietveld 408576698