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