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.
|
|
|
|
|
2017-05-18 15:05:25 -07:00
|
|
|
#ifndef BRIGHTRAY_BROWSER_DEVTOOLS_MANAGER_DELEGATE_H_
|
|
|
|
#define BRIGHTRAY_BROWSER_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"
|
|
|
|
|
|
|
|
namespace brightray {
|
|
|
|
|
|
|
|
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;
|
2018-04-17 21:46:27 -04:00
|
|
|
bool HandleCommand(content::DevToolsAgentHost* agent_host,
|
2018-04-08 21:32:06 +05:30
|
|
|
content::DevToolsAgentHostClient* client,
|
2018-04-17 21:46:27 -04:00
|
|
|
base::DictionaryValue* command) 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);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace brightray
|
|
|
|
|
2017-05-18 15:05:25 -07:00
|
|
|
#endif // BRIGHTRAY_BROWSER_DEVTOOLS_MANAGER_DELEGATE_H_
|