20 lines
373 B
C
20 lines
373 B
C
|
#ifndef BRIGHTRAY_BROWSER_INSPECTABLE_WEB_CONTENTS_VIEW_H_
|
||
|
#define BRIGHTRAY_BROWSER_INSPECTABLE_WEB_CONTENTS_VIEW_H_
|
||
|
|
||
|
#include "ui/gfx/native_widget_types.h"
|
||
|
|
||
|
namespace brightray {
|
||
|
|
||
|
class InspectableWebContentsView {
|
||
|
public:
|
||
|
virtual ~InspectableWebContentsView() {}
|
||
|
|
||
|
virtual gfx::NativeView GetNativeView() const = 0;
|
||
|
|
||
|
virtual void ShowDevTools() = 0;
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|