blob: 4671d184dc5fde4c1b06e4e761527dd7767c544a [file] [log] [blame]
// Copyright 2013 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 file.
#ifndef CONTENT_SHELL_BROWSER_SHELL_DEVTOOLS_MANAGER_DELEGATE_H_
#define CONTENT_SHELL_BROWSER_SHELL_DEVTOOLS_MANAGER_DELEGATE_H_
#include "base/basictypes.h"
#include "base/compiler_specific.h"
#include "components/devtools_http_handler/devtools_http_handler_delegate.h"
#include "content/public/browser/devtools_manager_delegate.h"
namespace devtools_http_handler {
class DevToolsHttpHandler;
}
namespace content {
class BrowserContext;
class ShellDevToolsManagerDelegate : public DevToolsManagerDelegate {
public:
static devtools_http_handler::DevToolsHttpHandler* CreateHttpHandler(
BrowserContext* browser_context);
explicit ShellDevToolsManagerDelegate(BrowserContext* browser_context);
~ShellDevToolsManagerDelegate() override;
// DevToolsManagerDelegate implementation.
void Inspect(BrowserContext* browser_context,
DevToolsAgentHost* agent_host) override {}
void DevToolsAgentStateChanged(DevToolsAgentHost* agent_host,
bool attached) override {}
base::DictionaryValue* HandleCommand(DevToolsAgentHost* agent_host,
base::DictionaryValue* command) override;
private:
BrowserContext* browser_context_;
DISALLOW_COPY_AND_ASSIGN(ShellDevToolsManagerDelegate);
};
} // namespace content
#endif // CONTENT_SHELL_BROWSER_SHELL_DEVTOOLS_MANAGER_DELEGATE_H_