1 /* -*- Mode: c++; tab-width: 2; indent-tabs-mode: nil; -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 #ifndef nsStandaloneNativeMenu_h_
7 #define nsStandaloneNativeMenu_h_
9 #include "nsIStandaloneNativeMenu.h"
10 #include "NativeMenuMac.h"
12 class nsStandaloneNativeMenu
: public nsIStandaloneNativeMenu
{
14 nsStandaloneNativeMenu();
17 NS_DECL_NSISTANDALONENATIVEMENU
19 RefPtr
<mozilla::widget::NativeMenuMac
> GetNativeMenu() { return mMenu
; }
22 virtual ~nsStandaloneNativeMenu();
24 RefPtr
<mozilla::widget::NativeMenuMac
> mMenu
;