2013-03-14 09:03:50 -04:00
|
|
|
#ifndef BRIGHTRAY_BROWSER_INSPECTABLE_WEB_CONTENTS_VIEW_H_
|
|
|
|
#define BRIGHTRAY_BROWSER_INSPECTABLE_WEB_CONTENTS_VIEW_H_
|
|
|
|
|
2015-08-07 14:30:49 +05:30
|
|
|
#include "base/strings/string16.h"
|
2013-03-14 09:03:50 -04:00
|
|
|
#include "ui/gfx/native_widget_types.h"
|
|
|
|
|
2014-07-02 16:21:47 +08:00
|
|
|
class DevToolsContentsResizingStrategy;
|
|
|
|
|
2014-07-04 16:25:59 +08:00
|
|
|
#if defined(TOOLKIT_VIEWS)
|
|
|
|
namespace views {
|
|
|
|
class View;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-03-14 09:03:50 -04:00
|
|
|
namespace brightray {
|
|
|
|
|
2015-06-25 12:29:34 +08:00
|
|
|
class InspectableWebContentsViewDelegate;
|
|
|
|
|
2013-03-14 09:03:50 -04:00
|
|
|
class InspectableWebContentsView {
|
2013-11-17 18:23:13 -05:00
|
|
|
public:
|
2015-06-25 12:29:34 +08:00
|
|
|
InspectableWebContentsView() : delegate_(nullptr) {}
|
2013-03-14 09:03:50 -04:00
|
|
|
virtual ~InspectableWebContentsView() {}
|
|
|
|
|
2015-06-25 12:29:34 +08:00
|
|
|
// The delegate manages its own life.
|
|
|
|
void SetDelegate(InspectableWebContentsViewDelegate* delegate) {
|
|
|
|
delegate_ = delegate;
|
|
|
|
}
|
2018-04-17 21:46:27 -04:00
|
|
|
InspectableWebContentsViewDelegate* GetDelegate() const { return delegate_; }
|
2015-06-25 12:29:34 +08:00
|
|
|
|
2018-05-10 13:52:17 -07:00
|
|
|
#if defined(TOOLKIT_VIEWS) && !defined(OS_MACOSX)
|
2014-07-04 16:25:59 +08:00
|
|
|
// Returns the container control, which has devtools view attached.
|
|
|
|
virtual views::View* GetView() = 0;
|
2013-03-14 09:03:50 -04:00
|
|
|
|
2014-07-04 16:25:59 +08:00
|
|
|
// Returns the web view control, which can be used by the
|
|
|
|
// GetInitiallyFocusedView() to set initial focus to web view.
|
|
|
|
virtual views::View* GetWebView() = 0;
|
2014-07-11 23:32:00 +08:00
|
|
|
#else
|
|
|
|
virtual gfx::NativeView GetNativeView() const = 0;
|
2014-07-04 16:25:59 +08:00
|
|
|
#endif
|
|
|
|
|
2013-03-14 09:03:50 -04:00
|
|
|
virtual void ShowDevTools() = 0;
|
2014-03-20 09:26:21 +08:00
|
|
|
// Hide the DevTools view.
|
2013-03-27 10:59:40 -04:00
|
|
|
virtual void CloseDevTools() = 0;
|
2013-12-09 04:34:44 -08:00
|
|
|
virtual bool IsDevToolsViewShowing() = 0;
|
2015-09-15 11:04:46 +08:00
|
|
|
virtual bool IsDevToolsViewFocused() = 0;
|
2014-07-02 16:21:47 +08:00
|
|
|
virtual void SetIsDocked(bool docked) = 0;
|
|
|
|
virtual void SetContentsResizingStrategy(
|
|
|
|
const DevToolsContentsResizingStrategy& strategy) = 0;
|
2015-08-07 14:30:49 +05:30
|
|
|
virtual void SetTitle(const base::string16& title) = 0;
|
2015-06-25 12:29:34 +08:00
|
|
|
|
|
|
|
private:
|
|
|
|
InspectableWebContentsViewDelegate* delegate_; // weak references.
|
2013-03-14 09:03:50 -04:00
|
|
|
};
|
|
|
|
|
2013-11-17 18:20:17 -05:00
|
|
|
} // namespace brightray
|
2013-03-14 09:03:50 -04:00
|
|
|
|
2017-05-18 15:05:25 -07:00
|
|
|
#endif // BRIGHTRAY_BROWSER_INSPECTABLE_WEB_CONTENTS_VIEW_H_
|