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

Side by Side Diff: chrome/browser/ui/views/tab_contents/render_view_context_menu_win.h

Issue 178193005: Move render_view_context_menu.* related files out of tab_contents. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: context_menu->renderer_context_menu for disambiguation Created 6 years, 9 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_UI_VIEWS_TAB_CONTENTS_RENDER_VIEW_CONTEXT_MENU_WIN_H_
6 #define CHROME_BROWSER_UI_VIEWS_TAB_CONTENTS_RENDER_VIEW_CONTEXT_MENU_WIN_H_
7
8 #include "chrome/browser/ui/views/tab_contents/render_view_context_menu_views.h"
9
10 namespace content {
11 class WebContents;
12 }
13
14 // Windows specific implementation of the render view context menu.
15 class RenderViewContextMenuWin : public RenderViewContextMenuViews {
16 public:
17 RenderViewContextMenuWin(content::RenderFrameHost* render_frame_host,
18 const content::ContextMenuParams& params);
19 virtual ~RenderViewContextMenuWin();
20
21 // SimpleMenuModel::Delegate implementation.
22 virtual bool IsCommandIdVisible(int command_id) const OVERRIDE;
23 virtual void ExecuteCommand(int command_id, int event_flags) OVERRIDE;
24
25 private:
26 DISALLOW_COPY_AND_ASSIGN(RenderViewContextMenuWin);
27 };
28
29 #endif // CHROME_BROWSER_UI_VIEWS_TAB_CONTENTS_RENDER_VIEW_CONTEXT_MENU_WIN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698