26 lines
720 B
C++
26 lines
720 B
C++
#ifndef BRIGHTRAY_INSPECTABLE_WEB_CONTENTS_DELEGATE_H_
|
|
#define BRIGHTRAY_INSPECTABLE_WEB_CONTENTS_DELEGATE_H_
|
|
|
|
#include <string>
|
|
|
|
#include "ui/gfx/image/image_skia.h"
|
|
|
|
namespace brightray {
|
|
|
|
class InspectableWebContentsDelegate {
|
|
public:
|
|
virtual ~InspectableWebContentsDelegate() {}
|
|
|
|
// Returns the icon of devtools window.
|
|
virtual gfx::ImageSkia GetDevToolsWindowIcon();
|
|
|
|
// Requested by WebContents of devtools.
|
|
virtual void DevToolsSaveToFile(
|
|
const std::string& url, const std::string& content, bool save_as) {}
|
|
virtual void DevToolsAppendToFile(
|
|
const std::string& url, const std::string& content) {}
|
|
};
|
|
|
|
} // namespace brightray
|
|
|
|
#endif // BRIGHTRAY_INSPECTABLE_WEB_CONTENTS_DELEGATE_H_
|