blob: 061562d9de0b39511e41624aeb689a442732871b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
// 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 "content/public/browser/devtools_http_handler_delegate.h"
#include "content/public/browser/devtools_manager_delegate.h"
namespace content {
class BrowserContext;
class DevToolsHttpHandler;
class ShellDevToolsManagerDelegate : public DevToolsManagerDelegate {
public:
static 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;
scoped_ptr<DevToolsTarget> CreateNewTarget(const GURL& url) override;
void EnumerateTargets(TargetCallback callback) override;
std::string GetPageThumbnailData(const GURL& url) override;
private:
BrowserContext* browser_context_;
DISALLOW_COPY_AND_ASSIGN(ShellDevToolsManagerDelegate);
};
} // namespace content
#endif // CONTENT_SHELL_BROWSER_SHELL_DEVTOOLS_MANAGER_DELEGATE_H_
|