electron/atom/browser/mac/atom_application_delegate.h

20 lines
502 B
C
Raw Normal View History

// Copyright (c) 2013 GitHub, Inc.
2014-04-25 09:49:37 +00:00
// Use of this source code is governed by the MIT license that can be
// found in the LICENSE file.
#import <Cocoa/Cocoa.h>
2014-11-16 15:04:31 +00:00
#import "atom/browser/ui/cocoa/atom_menu_controller.h"
@interface AtomApplicationDelegate : NSObject<NSApplicationDelegate> {
2014-11-16 15:04:31 +00:00
@private
base::scoped_nsobject<AtomMenuController> menu_controller_;
}
2014-11-16 15:04:31 +00:00
- (id)init;
// Sets the menu that will be returned in "applicationDockMenu:".
- (void)setApplicationDockMenu:(ui::MenuModel*)model;
@end