34 lines
931 B
C
34 lines
931 B
C
|
#ifndef BRIGHTRAY_BROWSER_LINUX_INSPECTABLE_WEB_CONTENTS_VIEW_LINUX_H_
|
||
|
#define BRIGHTRAY_BROWSER_LINUX_INSPECTABLE_WEB_CONTENTS_VIEW_LINUX_H_
|
||
|
|
||
|
#include "browser/inspectable_web_contents_view.h"
|
||
|
|
||
|
#include "base/compiler_specific.h"
|
||
|
|
||
|
namespace brightray {
|
||
|
|
||
|
class InspectableWebContentsImpl;
|
||
|
|
||
|
class InspectableWebContentsViewLinux : public InspectableWebContentsView {
|
||
|
public:
|
||
|
InspectableWebContentsViewLinux(InspectableWebContentsImpl*);
|
||
|
~InspectableWebContentsViewLinux();
|
||
|
|
||
|
virtual gfx::NativeView GetNativeView() const OVERRIDE;
|
||
|
virtual void ShowDevTools() OVERRIDE;
|
||
|
virtual void CloseDevTools() OVERRIDE;
|
||
|
virtual bool SetDockSide(const std::string& side) OVERRIDE;
|
||
|
|
||
|
InspectableWebContentsImpl* inspectable_web_contents() { return inspectable_web_contents_; }
|
||
|
|
||
|
private:
|
||
|
// Owns us.
|
||
|
InspectableWebContentsImpl* inspectable_web_contents_;
|
||
|
|
||
|
DISALLOW_COPY_AND_ASSIGN(InspectableWebContentsViewLinux);
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|