2015-01-10 01:14:52 +00:00
|
|
|
// Copyright (c) 2014 The Chromium Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE-CHROMIUM file.
|
|
|
|
|
2019-06-19 20:56:58 +00:00
|
|
|
#ifndef SHELL_BROWSER_UI_DEVTOOLS_MANAGER_DELEGATE_H_
|
|
|
|
#define SHELL_BROWSER_UI_DEVTOOLS_MANAGER_DELEGATE_H_
|
2015-01-10 01:14:52 +00:00
|
|
|
|
2017-05-18 22:06:57 +00:00
|
|
|
#include <string>
|
|
|
|
|
2015-01-10 01:14:52 +00:00
|
|
|
#include "base/compiler_specific.h"
|
2017-05-18 22:29:22 +00:00
|
|
|
#include "base/macros.h"
|
2015-01-10 01:14:52 +00:00
|
|
|
#include "content/public/browser/devtools_manager_delegate.h"
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
namespace electron {
|
2015-01-10 01:14:52 +00:00
|
|
|
|
|
|
|
class DevToolsManagerDelegate : public content::DevToolsManagerDelegate {
|
|
|
|
public:
|
2017-01-23 06:07:18 +00:00
|
|
|
static void StartHttpHandler();
|
2015-01-10 01:14:52 +00:00
|
|
|
|
|
|
|
DevToolsManagerDelegate();
|
2018-04-17 23:03:51 +00:00
|
|
|
~DevToolsManagerDelegate() override;
|
2015-01-10 01:14:52 +00:00
|
|
|
|
|
|
|
// DevToolsManagerDelegate implementation.
|
2017-01-23 05:48:23 +00:00
|
|
|
void Inspect(content::DevToolsAgentHost* agent_host) override;
|
2020-01-29 21:45:08 +00:00
|
|
|
void HandleCommand(content::DevToolsAgentHostClientChannel* channel,
|
2020-01-17 18:41:52 +00:00
|
|
|
base::span<const uint8_t> message,
|
2018-10-25 17:18:21 +00:00
|
|
|
NotHandledCallback callback) override;
|
2017-01-23 05:48:23 +00:00
|
|
|
scoped_refptr<content::DevToolsAgentHost> CreateNewTarget(
|
|
|
|
const GURL& url) override;
|
2017-01-23 06:07:18 +00:00
|
|
|
std::string GetDiscoveryPageHTML() override;
|
2018-04-04 13:15:04 +00:00
|
|
|
bool HasBundledFrontendResources() override;
|
2015-01-10 01:14:52 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(DevToolsManagerDelegate);
|
|
|
|
};
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
} // namespace electron
|
2015-01-10 01:14:52 +00:00
|
|
|
|
2019-06-19 20:56:58 +00:00
|
|
|
#endif // SHELL_BROWSER_UI_DEVTOOLS_MANAGER_DELEGATE_H_
|