2cd03bf360
* build: remove duplicate devtools sources * build: create separate target for chrome sources * Move sources that are always depended on by electron, starting with security_state_tab_helper.{cc|h} * Add //component/strings to pak for devtools security tab * fix: allow specifying type of the added filesystem. https://chromium-review.googlesource.com/c/chromium/src/+/729250 * fix: do not index excluded folders https://chromium-review.googlesource.com/c/chromium/src/+/972579
38 lines
1.1 KiB
Objective-C
38 lines
1.1 KiB
Objective-C
#import <AppKit/AppKit.h>
|
|
|
|
#include "base/mac/scoped_nsobject.h"
|
|
#include "chrome/browser/devtools/devtools_contents_resizing_strategy.h"
|
|
#include "ui/base/cocoa/base_view.h"
|
|
|
|
namespace brightray {
|
|
class InspectableWebContentsViewMac;
|
|
}
|
|
|
|
using brightray::InspectableWebContentsViewMac;
|
|
|
|
@interface BRYInspectableWebContentsView : BaseView <NSWindowDelegate> {
|
|
@private
|
|
brightray::InspectableWebContentsViewMac* inspectableWebContentsView_;
|
|
|
|
base::scoped_nsobject<NSView> fake_view_;
|
|
base::scoped_nsobject<NSWindow> devtools_window_;
|
|
BOOL devtools_visible_;
|
|
BOOL devtools_docked_;
|
|
BOOL devtools_is_first_responder_;
|
|
|
|
DevToolsContentsResizingStrategy strategy_;
|
|
}
|
|
|
|
- (instancetype)initWithInspectableWebContentsViewMac:
|
|
(InspectableWebContentsViewMac*)view;
|
|
- (void)removeObservers;
|
|
- (void)notifyDevToolsFocused;
|
|
- (void)setDevToolsVisible:(BOOL)visible;
|
|
- (BOOL)isDevToolsVisible;
|
|
- (BOOL)isDevToolsFocused;
|
|
- (void)setIsDocked:(BOOL)docked;
|
|
- (void)setContentsResizingStrategy:
|
|
(const DevToolsContentsResizingStrategy&)strategy;
|
|
- (void)setTitle:(NSString*)title;
|
|
|
|
@end
|