![electron-roller[bot]](/assets/img/avatar_default.png)
* chore: bump chromium in DEPS to 117.0.5892.0 * 4670267: Don't send javascript: or empty URLs to browser in CreateNewWindow.4670267
* 4662090: Add metrics for WebGPU support4662090
* 4672599: Use set_defaults for mac_app_bundle4672599
* 4663771: usb: Add connection count tracking methods for UsbDelegate4663771
* 4664578: Remove unused parameter from ExtensionsGuestViewManagerDelegate ctor4664578
* 4622253: usb: Create classes for usb system tray icon4622253
* 4678263: Remove ARC support from scoped_nsobject4678263
* chore: follow-up ARC changes and missing guard corrections * chore: don't mark 0-param ctor explicit Follow up to4664578
* chore: fixup patch indices * 4670865: Merge ObjectProxy::CallMethodAndBlock{,WithErrorDetails}.4670865
* chore: follow-up ARC changes and missing guard corrections * fixup: retain ElectronApplicationDelegate * fix: correct rustc binary --------- Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com> Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com>
63 lines
2.1 KiB
Text
63 lines
2.1 KiB
Text
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
|
// Copyright (c) 2013 Adam Roben <adam@roben.org>. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE-CHROMIUM file.
|
|
|
|
#include "shell/browser/ui/inspectable_web_contents_view_mac.h"
|
|
|
|
#include "base/strings/sys_string_conversions.h"
|
|
#import "shell/browser/ui/cocoa/electron_inspectable_web_contents_view.h"
|
|
#include "shell/browser/ui/inspectable_web_contents.h"
|
|
#include "shell/browser/ui/inspectable_web_contents_view_delegate.h"
|
|
|
|
namespace electron {
|
|
|
|
InspectableWebContentsView* CreateInspectableContentsView(
|
|
InspectableWebContents* inspectable_web_contents) {
|
|
return new InspectableWebContentsViewMac(inspectable_web_contents);
|
|
}
|
|
|
|
InspectableWebContentsViewMac::InspectableWebContentsViewMac(
|
|
InspectableWebContents* inspectable_web_contents)
|
|
: InspectableWebContentsView(inspectable_web_contents),
|
|
view_([[ElectronInspectableWebContentsView alloc]
|
|
initWithInspectableWebContentsViewMac:this]) {}
|
|
|
|
InspectableWebContentsViewMac::~InspectableWebContentsViewMac() {
|
|
CloseDevTools();
|
|
}
|
|
|
|
gfx::NativeView InspectableWebContentsViewMac::GetNativeView() const {
|
|
return view_;
|
|
}
|
|
|
|
void InspectableWebContentsViewMac::ShowDevTools(bool activate) {
|
|
[view_ setDevToolsVisible:YES activate:activate];
|
|
}
|
|
|
|
void InspectableWebContentsViewMac::CloseDevTools() {
|
|
[view_ setDevToolsVisible:NO activate:NO];
|
|
}
|
|
|
|
bool InspectableWebContentsViewMac::IsDevToolsViewShowing() {
|
|
return [view_ isDevToolsVisible];
|
|
}
|
|
|
|
bool InspectableWebContentsViewMac::IsDevToolsViewFocused() {
|
|
return [view_ isDevToolsFocused];
|
|
}
|
|
|
|
void InspectableWebContentsViewMac::SetIsDocked(bool docked, bool activate) {
|
|
[view_ setIsDocked:docked activate:activate];
|
|
}
|
|
|
|
void InspectableWebContentsViewMac::SetContentsResizingStrategy(
|
|
const DevToolsContentsResizingStrategy& strategy) {
|
|
[view_ setContentsResizingStrategy:strategy];
|
|
}
|
|
|
|
void InspectableWebContentsViewMac::SetTitle(const std::u16string& title) {
|
|
[view_ setTitle:base::SysUTF16ToNSString(title)];
|
|
}
|
|
|
|
} // namespace electron
|