blob: 55d5ec8bc2cdda7bad6a3871dd8dc9f926160ba9 (
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
69
70
71
72
73
74
75
76
77
78
79
80
|
// Copyright (c) 2009 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 WEBKIT_GLUE_DEVTOOLS_DEBUGGER_AGENT_IMPL_H_
#define WEBKIT_GLUE_DEVTOOLS_DEBUGGER_AGENT_IMPL_H_
#include <string>
#include <wtf/HashSet.h>
#include "v8.h"
#include "webkit/glue/devtools/debugger_agent.h"
#include "webkit/glue/webdevtoolsagent.h"
class WebDevToolsAgentImpl;
class WebViewImpl;
namespace WebCore {
class Document;
class Node;
class Page;
class String;
}
class DebuggerAgentImpl : public DebuggerAgent {
public:
// Creates utility context with injected js agent.
static void ResetUtilityContext(WebCore::Document* document,
v8::Persistent<v8::Context>* context);
DebuggerAgentImpl(WebViewImpl* web_view_impl,
DebuggerAgentDelegate* delegate,
WebDevToolsAgentImpl* webdevtools_agent);
virtual ~DebuggerAgentImpl();
// DebuggerAgent implementation.
virtual void DebugBreak();
virtual void GetContextId();
virtual void StartProfiling();
virtual void StopProfiling();
virtual void IsProfilingStarted();
virtual void GetNextLogLines();
void DebuggerOutput(const std::string& out);
// Executes function with the given name in the utility context. Passes node
// and json args as parameters. Note that the function called must be
// implemented in the inject.js file.
WebCore::String ExecuteUtilityFunction(
v8::Handle<v8::Context> context,
const WebCore::String& function_name,
WebCore::Node* node,
const WebCore::String& json_args,
WebCore::String* exception);
WebCore::String EvaluateJavaScript(
WebCore::Frame* frame,
const WebCore::String& source_code,
bool* is_exception);
WebCore::Page* GetPage();
WebDevToolsAgentImpl* webdevtools_agent() { return webdevtools_agent_; };
WebViewImpl* web_view() { return web_view_impl_; }
private:
WebViewImpl* web_view_impl_;
DebuggerAgentDelegate* delegate_;
WebDevToolsAgentImpl* webdevtools_agent_;
int profiler_log_position_;
DISALLOW_COPY_AND_ASSIGN(DebuggerAgentImpl);
};
#endif // WEBKIT_GLUE_DEVTOOLS_DEBUGGER_AGENT_IMPL_H_
|