59 lines
		
	
	
	
		
			1.6 KiB
			
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			59 lines
		
	
	
	
		
			1.6 KiB
			
		
	
	
	
		
			C++
		
	
	
	
	
	
#ifndef BRIGHTRAY_BROWSER_INSPECTABLE_WEB_CONTENTS_VIEW_H_
 | 
						|
#define BRIGHTRAY_BROWSER_INSPECTABLE_WEB_CONTENTS_VIEW_H_
 | 
						|
 | 
						|
#include "base/strings/string16.h"
 | 
						|
#include "ui/gfx/native_widget_types.h"
 | 
						|
 | 
						|
class DevToolsContentsResizingStrategy;
 | 
						|
 | 
						|
#if defined(TOOLKIT_VIEWS)
 | 
						|
namespace views {
 | 
						|
class View;
 | 
						|
}
 | 
						|
#endif
 | 
						|
 | 
						|
namespace brightray {
 | 
						|
 | 
						|
class InspectableWebContentsViewDelegate;
 | 
						|
 | 
						|
class InspectableWebContentsView {
 | 
						|
 public:
 | 
						|
  InspectableWebContentsView() : delegate_(nullptr) {}
 | 
						|
  virtual ~InspectableWebContentsView() {}
 | 
						|
 | 
						|
  // The delegate manages its own life.
 | 
						|
  void SetDelegate(InspectableWebContentsViewDelegate* delegate) {
 | 
						|
    delegate_ = delegate;
 | 
						|
  }
 | 
						|
  InspectableWebContentsViewDelegate* GetDelegate() const {
 | 
						|
    return delegate_;
 | 
						|
  }
 | 
						|
 | 
						|
#if defined(TOOLKIT_VIEWS)
 | 
						|
  // Returns the container control, which has devtools view attached.
 | 
						|
  virtual views::View* GetView() = 0;
 | 
						|
 | 
						|
  // Returns the web view control, which can be used by the
 | 
						|
  // GetInitiallyFocusedView() to set initial focus to web view.
 | 
						|
  virtual views::View* GetWebView() = 0;
 | 
						|
#else
 | 
						|
  virtual gfx::NativeView GetNativeView() const = 0;
 | 
						|
#endif
 | 
						|
 | 
						|
  virtual void ShowDevTools() = 0;
 | 
						|
  // Hide the DevTools view.
 | 
						|
  virtual void CloseDevTools() = 0;
 | 
						|
  virtual bool IsDevToolsViewShowing() = 0;
 | 
						|
  virtual bool IsDevToolsViewFocused() = 0;
 | 
						|
  virtual void SetIsDocked(bool docked) = 0;
 | 
						|
  virtual void SetContentsResizingStrategy(
 | 
						|
      const DevToolsContentsResizingStrategy& strategy) = 0;
 | 
						|
  virtual void SetTitle(const base::string16& title) = 0;
 | 
						|
 | 
						|
 private:
 | 
						|
  InspectableWebContentsViewDelegate* delegate_;  // weak references.
 | 
						|
};
 | 
						|
 | 
						|
}  // namespace brightray
 | 
						|
 | 
						|
#endif  // BRIGHTRAY_BROWSER_INSPECTABLE_WEB_CONTENTS_VIEW_H_
 |