b2a79856ef
This class can be used to create a content::WebContents that can be inspected by the Chrome Dev Tools. This requires embedding applications to copy content_shell.pak into their resource bundle. Right now the dev tools are always docked to the bottom of the view; we don't yet support undocking or changing the docked side. Fixes #1.
12 lines
230 B
Objective-C
12 lines
230 B
Objective-C
#import <AppKit/AppKit.h>
|
|
|
|
@class BRYInspectableWebContentsViewPrivate;
|
|
|
|
@interface BRYInspectableWebContentsView : NSView {
|
|
@private
|
|
BRYInspectableWebContentsViewPrivate *_private;
|
|
}
|
|
|
|
- (IBAction)showDevTools:(id)sender;
|
|
|
|
@end
|