2017-05-18 15:05:25 -07:00
|
|
|
#ifndef BRIGHTRAY_BROWSER_INSPECTABLE_WEB_CONTENTS_DELEGATE_H_
|
|
|
|
#define BRIGHTRAY_BROWSER_INSPECTABLE_WEB_CONTENTS_DELEGATE_H_
|
2014-03-04 16:12:02 +08:00
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
namespace brightray {
|
|
|
|
|
|
|
|
class InspectableWebContentsDelegate {
|
|
|
|
public:
|
|
|
|
virtual ~InspectableWebContentsDelegate() {}
|
|
|
|
|
2014-04-05 00:10:09 +08:00
|
|
|
// Requested by WebContents of devtools.
|
2016-04-12 16:35:35 +09:00
|
|
|
virtual void DevToolsReloadPage() {}
|
2014-04-05 00:10:09 +08:00
|
|
|
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) {}
|
2016-03-15 07:53:40 +05:30
|
|
|
virtual void DevToolsRequestFileSystems() {}
|
2015-07-24 15:13:36 +05:30
|
|
|
virtual void DevToolsAddFileSystem(
|
|
|
|
const base::FilePath& file_system_path) {}
|
2015-06-04 22:21:23 +05:30
|
|
|
virtual void DevToolsRemoveFileSystem(
|
2015-07-24 15:13:36 +05:30
|
|
|
const base::FilePath& file_system_path) {}
|
2016-05-07 04:36:00 +05:30
|
|
|
virtual void DevToolsIndexPath(
|
|
|
|
int request_id, const std::string& file_system_path) {}
|
|
|
|
virtual void DevToolsStopIndexing(int request_id) {}
|
|
|
|
virtual void DevToolsSearchInPath(
|
|
|
|
int request_id,
|
|
|
|
const std::string& file_system_path,
|
|
|
|
const std::string& query) {}
|
2014-03-04 16:12:02 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace brightray
|
|
|
|
|
2017-05-18 15:05:25 -07:00
|
|
|
#endif // BRIGHTRAY_BROWSER_INSPECTABLE_WEB_CONTENTS_DELEGATE_H_
|