12345678910111213141516171819202122232425262728293031 |
- #ifndef BRIGHTRAY_BROWSER_INSPECTABLE_WEB_CONTENTS_VIEW_DELEGATE_H_
- #define BRIGHTRAY_BROWSER_INSPECTABLE_WEB_CONTENTS_VIEW_DELEGATE_H_
- #include <string>
- #include "ui/gfx/image/image_skia.h"
- namespace brightray {
- class InspectableWebContentsViewDelegate {
- public:
- virtual ~InspectableWebContentsViewDelegate() {}
- virtual void DevToolsFocused() {}
- virtual void DevToolsOpened() {}
- virtual void DevToolsClosed() {}
-
- virtual gfx::ImageSkia GetDevToolsWindowIcon();
- #if defined(USE_X11)
-
- virtual void GetDevToolsWindowWMClass(std::string* name,
- std::string* class_name) {}
- #endif
- };
- }
- #endif
|