2018-10-19 13:50:30 +00:00
|
|
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
|
|
|
// Copyright (c) 2013 Adam Roben <adam@roben.org>. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE-CHROMIUM file.
|
|
|
|
|
2021-11-22 07:34:31 +00:00
|
|
|
#ifndef ELECTRON_SHELL_BROWSER_UI_INSPECTABLE_WEB_CONTENTS_DELEGATE_H_
|
|
|
|
#define ELECTRON_SHELL_BROWSER_UI_INSPECTABLE_WEB_CONTENTS_DELEGATE_H_
|
2014-03-04 08:12:02 +00:00
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
2018-09-12 13:45:08 +00:00
|
|
|
#include "base/files/file_path.h"
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
namespace electron {
|
2014-03-04 08:12:02 +00:00
|
|
|
|
|
|
|
class InspectableWebContentsDelegate {
|
|
|
|
public:
|
|
|
|
virtual ~InspectableWebContentsDelegate() {}
|
|
|
|
|
2014-04-04 16:10:09 +00:00
|
|
|
// Requested by WebContents of devtools.
|
2016-04-12 07:35:35 +00:00
|
|
|
virtual void DevToolsReloadPage() {}
|
2018-04-18 01:46:27 +00: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 02:23:40 +00:00
|
|
|
virtual void DevToolsRequestFileSystems() {}
|
2018-09-12 13:45:08 +00:00
|
|
|
virtual void DevToolsAddFileSystem(const std::string& type,
|
|
|
|
const base::FilePath& file_system_path) {}
|
2015-06-04 16:51:23 +00:00
|
|
|
virtual void DevToolsRemoveFileSystem(
|
2015-07-24 09:43:36 +00:00
|
|
|
const base::FilePath& file_system_path) {}
|
2018-04-18 01:46:27 +00:00
|
|
|
virtual void DevToolsIndexPath(int request_id,
|
2018-09-12 13:45:08 +00:00
|
|
|
const std::string& file_system_path,
|
|
|
|
const std::string& excluded_folders) {}
|
2016-05-06 23:06:00 +00:00
|
|
|
virtual void DevToolsStopIndexing(int request_id) {}
|
2018-04-18 01:46:27 +00:00
|
|
|
virtual void DevToolsSearchInPath(int request_id,
|
|
|
|
const std::string& file_system_path,
|
|
|
|
const std::string& query) {}
|
2021-06-17 13:42:51 +00:00
|
|
|
virtual void DevToolsSetEyeDropperActive(bool active) {}
|
2014-03-04 08:12:02 +00:00
|
|
|
};
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
} // namespace electron
|
2014-03-04 08:12:02 +00:00
|
|
|
|
2021-11-22 07:34:31 +00:00
|
|
|
#endif // ELECTRON_SHELL_BROWSER_UI_INSPECTABLE_WEB_CONTENTS_DELEGATE_H_
|