2018-10-19 13:50:30 +00:00
|
|
|
// 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.
|
2013-03-14 13:03:50 +00:00
|
|
|
|
2019-06-19 20:56:58 +00:00
|
|
|
#ifndef SHELL_BROWSER_UI_INSPECTABLE_WEB_CONTENTS_VIEW_MAC_H_
|
|
|
|
#define SHELL_BROWSER_UI_INSPECTABLE_WEB_CONTENTS_VIEW_MAC_H_
|
2018-10-19 13:50:30 +00:00
|
|
|
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/browser/ui/inspectable_web_contents_view.h"
|
2013-03-14 13:03:50 +00:00
|
|
|
|
2013-11-17 23:24:36 +00:00
|
|
|
#include "base/mac/scoped_nsobject.h"
|
2013-03-14 13:03:50 +00:00
|
|
|
|
2020-02-04 20:19:40 +00:00
|
|
|
@class ElectronInspectableWebContentsView;
|
2013-03-14 13:03:50 +00:00
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
namespace electron {
|
2013-03-14 13:03:50 +00:00
|
|
|
|
2020-07-15 18:27:42 +00:00
|
|
|
class InspectableWebContents;
|
2013-03-14 13:03:50 +00:00
|
|
|
|
|
|
|
class InspectableWebContentsViewMac : public InspectableWebContentsView {
|
2013-11-17 23:24:36 +00:00
|
|
|
public:
|
|
|
|
explicit InspectableWebContentsViewMac(
|
2020-07-15 18:27:42 +00:00
|
|
|
InspectableWebContents* inspectable_web_contents);
|
2020-07-14 01:13:34 +00:00
|
|
|
InspectableWebContentsViewMac(const InspectableWebContentsViewMac&) = delete;
|
|
|
|
InspectableWebContentsViewMac& operator=(
|
|
|
|
const InspectableWebContentsViewMac&) = delete;
|
2018-04-17 23:03:51 +00:00
|
|
|
~InspectableWebContentsViewMac() override;
|
2013-11-17 23:24:36 +00:00
|
|
|
|
2015-06-05 04:07:27 +00:00
|
|
|
gfx::NativeView GetNativeView() const override;
|
2018-11-27 09:34:44 +00:00
|
|
|
void ShowDevTools(bool activate) override;
|
2015-06-05 04:07:27 +00:00
|
|
|
void CloseDevTools() override;
|
|
|
|
bool IsDevToolsViewShowing() override;
|
2015-09-15 03:04:46 +00:00
|
|
|
bool IsDevToolsViewFocused() override;
|
2018-11-27 09:34:44 +00:00
|
|
|
void SetIsDocked(bool docked, bool activate) override;
|
2015-06-05 04:07:27 +00:00
|
|
|
void SetContentsResizingStrategy(
|
2014-10-23 03:10:39 +00:00
|
|
|
const DevToolsContentsResizingStrategy& strategy) override;
|
2021-03-16 16:18:45 +00:00
|
|
|
void SetTitle(const std::u16string& title) override;
|
2013-03-14 13:03:50 +00:00
|
|
|
|
2020-07-15 18:27:42 +00:00
|
|
|
InspectableWebContents* inspectable_web_contents() {
|
2013-11-17 23:24:36 +00:00
|
|
|
return inspectable_web_contents_;
|
|
|
|
}
|
2013-03-14 13:03:50 +00:00
|
|
|
|
2013-11-17 23:24:36 +00:00
|
|
|
private:
|
2013-03-14 13:03:50 +00:00
|
|
|
// Owns us.
|
2020-07-15 18:27:42 +00:00
|
|
|
InspectableWebContents* inspectable_web_contents_;
|
2013-11-17 23:24:36 +00:00
|
|
|
|
2020-02-04 20:19:40 +00:00
|
|
|
base::scoped_nsobject<ElectronInspectableWebContentsView> view_;
|
2013-03-14 13:03:50 +00:00
|
|
|
};
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
} // namespace electron
|
2013-03-14 13:03:50 +00:00
|
|
|
|
2019-06-19 20:56:58 +00:00
|
|
|
#endif // SHELL_BROWSER_UI_INSPECTABLE_WEB_CONTENTS_VIEW_MAC_H_
|