b2a79856ef
This class can be used to create a content::WebContents that can be inspected by the Chrome Dev Tools. This requires embedding applications to copy content_shell.pak into their resource bundle. Right now the dev tools are always docked to the bottom of the view; we don't yet support undocking or changing the docked side. Fixes #1.
19 lines
373 B
C++
19 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
|