blob: 2b64a7dd40a41e9d616e2b0b7099e9f6de6d704b (
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
46
47
48
49
50
51
52
53
54
55
56
57
58
|
// Copyright (c) 2012 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_PUBLIC_BROWSER_DEVTOOLS_HTTP_HANDLER_DELEGATE_H_
#define CONTENT_PUBLIC_BROWSER_DEVTOOLS_HTTP_HANDLER_DELEGATE_H_
#include <string>
#include <vector>
#include "base/files/file_path.h"
#include "base/memory/scoped_ptr.h"
#include "net/socket/stream_listen_socket.h"
class GURL;
namespace content {
class DevToolsTarget;
class DevToolsHttpHandlerDelegate {
public:
virtual ~DevToolsHttpHandlerDelegate() {}
// Should return discovery page HTML that should list available tabs
// and provide attach links.
virtual std::string GetDiscoveryPageHTML() = 0;
// Returns true if and only if frontend resources are bundled.
virtual bool BundlesFrontendResources() = 0;
// Returns path to the front-end files on the local filesystem for debugging.
virtual base::FilePath GetDebugFrontendDir() = 0;
// Get a thumbnail for a given page. Returns non-empty string iff we have the
// thumbnail.
virtual std::string GetPageThumbnailData(const GURL& url) = 0;
// Creates new inspectable target.
virtual scoped_ptr<DevToolsTarget> CreateNewTarget(const GURL& url) = 0;
typedef std::vector<DevToolsTarget*> TargetList;
typedef base::Callback<void(const TargetList&)> TargetCallback;
// Requests the list of all inspectable targets.
// The caller gets the ownership of the returned targets.
virtual void EnumerateTargets(TargetCallback callback) = 0;
// Creates named socket for reversed tethering implementation (used with
// remote debugging, primarily for mobile).
virtual scoped_ptr<net::StreamListenSocket> CreateSocketForTethering(
net::StreamListenSocket::Delegate* delegate,
std::string* name) = 0;
};
} // namespace content
#endif // CONTENT_PUBLIC_BROWSER_DEVTOOLS_HTTP_HANDLER_DELEGATE_H_
|