[Win] Implement context menu.

This commit is contained in:
Cheng Zhao 2013-08-06 21:08:52 +08:00
parent 286335c8f9
commit b2872eaf60
2 changed files with 11 additions and 0 deletions

View file

@ -7,6 +7,10 @@
#include "browser/api/atom_api_menu.h"
namespace views {
class Menu2;
}
namespace atom {
namespace api {
@ -20,6 +24,8 @@ class MenuWin : public Menu {
virtual void Popup(NativeWindow* window) OVERRIDE;
private:
scoped_ptr<views::Menu2> menu_;
DISALLOW_COPY_AND_ASSIGN(MenuWin);
};