blob: 847b9a0ef162777d419a119a786d4762da918714 (
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
59
60
61
62
63
64
65
66
67
68
|
// Copyright (c) 2011 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_RENDERER_DEVTOOLS_AGENT_H_
#define CONTENT_RENDERER_DEVTOOLS_AGENT_H_
#pragma once
#include <string>
#include "base/basictypes.h"
#include "content/public/renderer/render_view_observer.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebDevToolsAgentClient.h"
class RenderViewImpl;
namespace WebKit {
class WebDevToolsAgent;
}
// DevToolsAgent belongs to the inspectable RenderView and provides Glue's
// agents with the communication capabilities. All messages from/to Glue's
// agents infrastructure are flowing through this communication agent.
// There is a corresponding DevToolsClient object on the client side.
class DevToolsAgent : public content::RenderViewObserver,
public WebKit::WebDevToolsAgentClient {
public:
explicit DevToolsAgent(RenderViewImpl* render_view);
virtual ~DevToolsAgent();
// Returns agent instance for its host id.
static DevToolsAgent* FromHostId(int host_id);
WebKit::WebDevToolsAgent* GetWebAgent();
bool IsAttached();
private:
friend class DevToolsAgentFilter;
// RenderView::Observer implementation.
virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
// WebDevToolsAgentClient implementation
virtual void sendMessageToInspectorFrontend(const WebKit::WebString& data);
virtual int hostIdentifier();
virtual void saveAgentRuntimeState(const WebKit::WebString& state);
virtual WebKit::WebDevToolsAgentClient::WebKitClientMessageLoop*
createClientMessageLoop();
virtual void clearBrowserCache();
virtual void clearBrowserCookies();
void OnAttach();
void OnReattach(const std::string& agent_state);
void OnDetach();
void OnDispatchOnInspectorBackend(const std::string& message);
void OnInspectElement(int x, int y);
void OnSetApuAgentEnabled(bool enabled);
void OnNavigate();
void OnSetupDevToolsClient();
bool is_attached_;
DISALLOW_COPY_AND_ASSIGN(DevToolsAgent);
};
#endif // CONTENT_RENDERER_DEVTOOLS_AGENT_H_
|