12 lines
249 B
Objective-C
12 lines
249 B
Objective-C
#import <AppKit/AppKit.h>
|
|
|
|
@class BRYInspectableWebContentsViewPrivate;
|
|
|
|
@interface BRYInspectableWebContentsView : NSView <NSWindowDelegate> {
|
|
@private
|
|
BRYInspectableWebContentsViewPrivate *_private;
|
|
}
|
|
|
|
- (IBAction)showDevTools:(id)sender;
|
|
|
|
@end
|