2015-01-09 17:14:52 -08: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 13:56:58 -07:00
|
|
|
#ifndef SHELL_BROWSER_UI_DEVTOOLS_MANAGER_DELEGATE_H_
|
|
|
|
#define SHELL_BROWSER_UI_DEVTOOLS_MANAGER_DELEGATE_H_
|
2015-01-09 17:14:52 -08:00
|
|
|
|
2017-05-18 15:06:57 -07:00
|
|
|
#include <string>
|
|
|
|
|
2015-01-09 17:14:52 -08:00
|
|
|
#include "base/compiler_specific.h"
|
2017-05-18 15:29:22 -07:00
|
|
|
#include "base/macros.h"
|
2015-01-09 17:14:52 -08:00
|
|
|
#include "content/public/browser/devtools_manager_delegate.h"
|
|
|
|
|
2019-06-19 14:23:04 -07:00
|
|
|
namespace electron {
|
2015-01-09 17:14:52 -08:00
|
|
|
|
|
|
|
class DevToolsManagerDelegate : public content::DevToolsManagerDelegate {
|
|
|
|
public:
|
2017-01-23 15:07:18 +09:00
|
|
|
static void StartHttpHandler();
|
2015-01-09 17:14:52 -08:00
|
|
|
|
|
|
|
DevToolsManagerDelegate();
|
2018-04-17 16:03:51 -07:00
|
|
|
~DevToolsManagerDelegate() override;
|
2015-01-09 17:14:52 -08:00
|
|
|
|
|
|
|
// DevToolsManagerDelegate implementation.
|
2017-01-23 14:48:23 +09:00
|
|
|
void Inspect(content::DevToolsAgentHost* agent_host) override;
|
2020-01-29 13:45:08 -08:00
|
|
|
void HandleCommand(content::DevToolsAgentHostClientChannel* channel,
|
2020-01-17 10:41:52 -08:00
|
|
|
base::span<const uint8_t> message,
|
2018-10-25 22:48:21 +05:30
|
|
|
NotHandledCallback callback) override;
|
2017-01-23 14:48:23 +09:00
|
|
|
scoped_refptr<content::DevToolsAgentHost> CreateNewTarget(
|
|
|
|
const GURL& url) override;
|
2017-01-23 15:07:18 +09:00
|
|
|
std::string GetDiscoveryPageHTML() override;
|
2018-04-04 15:15:04 +02:00
|
|
|
bool HasBundledFrontendResources() override;
|
2015-01-09 17:14:52 -08:00
|
|
|
|
|
|
|
private:
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(DevToolsManagerDelegate);
|
|
|
|
};
|
|
|
|
|
2019-06-19 14:23:04 -07:00
|
|
|
} // namespace electron
|
2015-01-09 17:14:52 -08:00
|
|
|
|
2019-06-19 13:56:58 -07:00
|
|
|
#endif // SHELL_BROWSER_UI_DEVTOOLS_MANAGER_DELEGATE_H_
|