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.
|
|
|
|
|
2017-05-18 22:05:25 +00:00
|
|
|
#ifndef BRIGHTRAY_BROWSER_DEVTOOLS_MANAGER_DELEGATE_H_
|
|
|
|
#define BRIGHTRAY_BROWSER_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"
|
|
|
|
|
|
|
|
namespace brightray {
|
|
|
|
|
2015-09-26 18:19:27 +00:00
|
|
|
class DevToolsNetworkProtocolHandler;
|
|
|
|
|
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();
|
|
|
|
virtual ~DevToolsManagerDelegate();
|
|
|
|
|
|
|
|
// DevToolsManagerDelegate implementation.
|
2017-01-23 05:48:23 +00:00
|
|
|
void Inspect(content::DevToolsAgentHost* agent_host) override;
|
|
|
|
base::DictionaryValue* HandleCommand(
|
|
|
|
content::DevToolsAgentHost* agent_host,
|
|
|
|
base::DictionaryValue* command) override;
|
|
|
|
scoped_refptr<content::DevToolsAgentHost> CreateNewTarget(
|
|
|
|
const GURL& url) override;
|
2017-01-23 06:07:18 +00:00
|
|
|
std::string GetDiscoveryPageHTML() override;
|
|
|
|
std::string GetFrontendResource(const std::string& path) override;
|
2015-01-10 01:14:52 +00:00
|
|
|
|
|
|
|
private:
|
2016-05-23 01:59:07 +00:00
|
|
|
std::unique_ptr<DevToolsNetworkProtocolHandler> handler_;
|
2015-09-26 18:19:27 +00:00
|
|
|
|
2015-01-10 01:14:52 +00:00
|
|
|
DISALLOW_COPY_AND_ASSIGN(DevToolsManagerDelegate);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace brightray
|
|
|
|
|
2017-05-18 22:05:25 +00:00
|
|
|
#endif // BRIGHTRAY_BROWSER_DEVTOOLS_MANAGER_DELEGATE_H_
|