Backed out changeset 2450366cf7ca (bug 1891629) for causing win msix mochitest failures
[gecko.git] / widget / cocoa / nsStandaloneNativeMenu.h
blob9d43e5e64de6bdcbd6d49d88344bf7a384399da1
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 {
13 public:
14 nsStandaloneNativeMenu();
16 NS_DECL_ISUPPORTS
17 NS_DECL_NSISTANDALONENATIVEMENU
19 RefPtr<mozilla::widget::NativeMenuMac> GetNativeMenu() { return mMenu; }
21 protected:
22 virtual ~nsStandaloneNativeMenu();
24 RefPtr<mozilla::widget::NativeMenuMac> mMenu;
27 #endif