
* Revert "refactor: remove InspectableWebContentsViewMac in favor of the Views version (#41326)" This reverts commite67ab9a93d
. * build: fix gn check * chore: implement setCornerRadii in inspectable_web_contents_view_mac Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> * fix: pass in cornerRadii value in setCornerRadii Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> * fix: forward declaration * 5578714: Remove 0-arg (default) constructor for views::Widget::InitParams.5578714
* fix: contents_web_view_ -> contents_view_ * chore: remove extraneous includes --------- Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com>
42 lines
1.6 KiB
Objective-C
42 lines
1.6 KiB
Objective-C
// 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.
|
|
|
|
#ifndef ELECTRON_SHELL_BROWSER_UI_INSPECTABLE_WEB_CONTENTS_VIEW_MAC_H_
|
|
#define ELECTRON_SHELL_BROWSER_UI_INSPECTABLE_WEB_CONTENTS_VIEW_MAC_H_
|
|
|
|
#include "shell/browser/ui/inspectable_web_contents_view.h"
|
|
|
|
@class ElectronInspectableWebContentsView;
|
|
|
|
namespace electron {
|
|
|
|
class InspectableWebContentsViewMac : public InspectableWebContentsView {
|
|
public:
|
|
explicit InspectableWebContentsViewMac(
|
|
InspectableWebContents* inspectable_web_contents);
|
|
InspectableWebContentsViewMac(const InspectableWebContentsViewMac&) = delete;
|
|
InspectableWebContentsViewMac& operator=(
|
|
const InspectableWebContentsViewMac&) = delete;
|
|
~InspectableWebContentsViewMac() override;
|
|
|
|
gfx::NativeView GetNativeView() const override;
|
|
void SetCornerRadii(const gfx::RoundedCornersF& corner_radii) override;
|
|
void ShowDevTools(bool activate) override;
|
|
void CloseDevTools() override;
|
|
bool IsDevToolsViewShowing() override;
|
|
bool IsDevToolsViewFocused() override;
|
|
void SetIsDocked(bool docked, bool activate) override;
|
|
void SetContentsResizingStrategy(
|
|
const DevToolsContentsResizingStrategy& strategy) override;
|
|
void SetTitle(const std::u16string& title) override;
|
|
const std::u16string GetTitle() override;
|
|
|
|
private:
|
|
ElectronInspectableWebContentsView* __strong view_;
|
|
};
|
|
|
|
} // namespace electron
|
|
|
|
#endif // ELECTRON_SHELL_BROWSER_UI_INSPECTABLE_WEB_CONTENTS_VIEW_MAC_H_
|