2013-03-14 09:03:50 -04:00
|
|
|
#ifndef BRIGHTRAY_BROWSER_INSPECTABLE_WEB_CONTENTS_VIEW_MAC_H_
|
|
|
|
#define BRIGHTRAY_BROWSER_INSPECTABLE_WEB_CONTENTS_VIEW_MAC_H_
|
|
|
|
|
2013-11-17 18:24:36 -05:00
|
|
|
#include "browser/inspectable_web_contents_view.h"
|
2013-03-14 09:03:50 -04:00
|
|
|
|
2013-11-17 18:24:36 -05:00
|
|
|
#include "base/mac/scoped_nsobject.h"
|
2013-03-14 09:03:50 -04:00
|
|
|
|
|
|
|
@class BRYInspectableWebContentsView;
|
|
|
|
|
|
|
|
namespace brightray {
|
|
|
|
|
|
|
|
class InspectableWebContentsImpl;
|
|
|
|
|
|
|
|
class InspectableWebContentsViewMac : public InspectableWebContentsView {
|
2013-11-17 18:24:36 -05:00
|
|
|
public:
|
|
|
|
explicit InspectableWebContentsViewMac(
|
|
|
|
InspectableWebContentsImpl* inspectable_web_contents_impl);
|
2014-04-23 11:20:12 +08:00
|
|
|
virtual ~InspectableWebContentsViewMac();
|
2013-11-17 18:24:36 -05:00
|
|
|
|
2013-03-14 09:03:50 -04:00
|
|
|
virtual gfx::NativeView GetNativeView() const OVERRIDE;
|
|
|
|
virtual void ShowDevTools() OVERRIDE;
|
2013-03-27 10:59:40 -04:00
|
|
|
virtual void CloseDevTools() OVERRIDE;
|
2013-12-09 04:34:44 -08:00
|
|
|
virtual bool IsDevToolsViewShowing() OVERRIDE;
|
2013-03-27 11:19:15 -04:00
|
|
|
virtual bool SetDockSide(const std::string& side) OVERRIDE;
|
2013-03-14 09:03:50 -04:00
|
|
|
|
2013-11-17 18:24:36 -05:00
|
|
|
InspectableWebContentsImpl* inspectable_web_contents() {
|
|
|
|
return inspectable_web_contents_;
|
|
|
|
}
|
2013-03-14 09:03:50 -04:00
|
|
|
|
2013-11-17 18:24:36 -05:00
|
|
|
private:
|
2013-03-14 09:03:50 -04:00
|
|
|
// Owns us.
|
|
|
|
InspectableWebContentsImpl* inspectable_web_contents_;
|
2013-11-17 18:24:36 -05:00
|
|
|
|
2013-10-07 15:17:39 -04:00
|
|
|
base::scoped_nsobject<BRYInspectableWebContentsView> view_;
|
2013-03-14 09:03:50 -04:00
|
|
|
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(InspectableWebContentsViewMac);
|
|
|
|
};
|
|
|
|
|
2013-11-17 18:20:17 -05:00
|
|
|
} // namespace brightray
|
2013-03-14 09:03:50 -04:00
|
|
|
|
|
|
|
#endif
|