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

Unified Diff: chrome/browser/custom_handlers/protocol_handler_registry_browsertest.cc

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: chrome/browser/custom_handlers/protocol_handler_registry_browsertest.cc
===================================================================
--- chrome/browser/custom_handlers/protocol_handler_registry_browsertest.cc (revision 121660)
+++ chrome/browser/custom_handlers/protocol_handler_registry_browsertest.cc (working copy)
@@ -23,7 +23,8 @@
class TestRenderViewContextMenu : public RenderViewContextMenu {
public:
- TestRenderViewContextMenu(WebContents* web_contents, ContextMenuParams params)
+ TestRenderViewContextMenu(WebContents* web_contents,
+ content::ContextMenuParams params)
: RenderViewContextMenu(web_contents, params) { }
virtual void PlatformInit() { }
@@ -43,7 +44,7 @@
RegisterProtocolHandlerBrowserTest() { }
TestRenderViewContextMenu* CreateContextMenu(GURL url) {
- ContextMenuParams params;
+ content::ContextMenuParams params;
params.media_type = WebKit::WebContextMenuData::MediaTypeNone;
params.link_url = url;
params.unfiltered_link_url = url;

Powered by Google App Engine
This is Rietveld 408576698