electron/brightray/browser/inspectable_web_contents_delegate.h

26 lines
766 B
C
Raw Normal View History

2014-03-04 08:12:02 +00:00
#ifndef BRIGHTRAY_INSPECTABLE_WEB_CONTENTS_DELEGATE_H_
#define BRIGHTRAY_INSPECTABLE_WEB_CONTENTS_DELEGATE_H_
#include <string>
namespace brightray {
class InspectableWebContentsDelegate {
public:
virtual ~InspectableWebContentsDelegate() {}
// 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) {}
virtual void DevToolsAddFileSystem(
const base::FilePath& file_system_path) {}
2015-06-04 16:51:23 +00:00
virtual void DevToolsRemoveFileSystem(
const base::FilePath& file_system_path) {}
2014-03-04 08:12:02 +00:00
};
} // namespace brightray
#endif // BRIGHTRAY_INSPECTABLE_WEB_CONTENTS_DELEGATE_H_