OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef WEBKIT_GLUE_DEVTOOLS_TOOLS_AGENT_H_ | 5 #ifndef WEBKIT_GLUE_DEVTOOLS_TOOLS_AGENT_H_ |
6 #define WEBKIT_GLUE_DEVTOOLS_TOOLS_AGENT_H_ | 6 #define WEBKIT_GLUE_DEVTOOLS_TOOLS_AGENT_H_ |
7 | 7 |
8 #include "webkit/glue/devtools/devtools_rpc.h" | 8 #include "webkit/glue/devtools/devtools_rpc.h" |
9 | 9 |
10 // Tools agent provides API for enabling / disabling other agents as well as | 10 // Tools agent provides API for enabling / disabling other agents as well as |
11 // API for auxiliary UI functions such as dom elements highlighting. | 11 // API for auxiliary UI functions such as dom elements highlighting. |
12 #define TOOLS_AGENT_STRUCT(METHOD0, METHOD1, METHOD2, METHOD3, METHOD4) \ | 12 #define TOOLS_AGENT_STRUCT(METHOD0, METHOD1, METHOD2, METHOD3, METHOD4) \ |
13 /* Highlights Dom node with given ID */ \ | 13 /* Highlights Dom node with given ID */ \ |
14 METHOD1(HighlightDOMNode, int /* node_id */) \ | 14 METHOD1(HighlightDOMNode, int /* node_id */) \ |
15 \ | 15 \ |
16 /* Clears Dom Node highlight. */ \ | 16 /* Clears Dom Node highlight. */ \ |
17 METHOD0(HideDOMNodeHighlight) \ | 17 METHOD0(HideDOMNodeHighlight) \ |
18 \ | 18 \ |
19 /* Executes JavaScript in the context of the inspected window. */ \ | 19 /* Executes JavaScript in the context of the inspected window. */ \ |
20 METHOD2(EvaluateJavaScript, int /* call_id */, String /* JS expression */) \ | 20 METHOD2(EvaluateJavaScript, int /* call_id */, String /* JS expression */) \ |
21 \ | 21 \ |
22 /* Requests that utility js function is executed with the given args. */ \ | 22 /* Requests that utility js function is executed with the given args. */ \ |
23 METHOD4(ExecuteUtilityFunction, int /* call_id */, \ | 23 METHOD4(ExecuteUtilityFunction, int /* call_id */, \ |
24 String /* function_name */, int /* context_node_id */, \ | 24 String /* function_name */, int /* context_node_id */, \ |
25 String /* json_args */) | 25 String /* json_args */) \ |
| 26 \ |
| 27 /* Clears cached console messages. */ \ |
| 28 METHOD0(ClearConsoleMessages) |
26 | 29 |
27 DEFINE_RPC_CLASS(ToolsAgent, TOOLS_AGENT_STRUCT) | 30 DEFINE_RPC_CLASS(ToolsAgent, TOOLS_AGENT_STRUCT) |
28 | 31 |
29 #define TOOLS_AGENT_DELEGATE_STRUCT(METHOD0, METHOD1, METHOD2, METHOD3, \ | 32 #define TOOLS_AGENT_DELEGATE_STRUCT(METHOD0, METHOD1, METHOD2, METHOD3, \ |
30 METHOD4) \ | 33 METHOD4) \ |
31 /* Updates focused node on the client. */ \ | 34 /* Updates focused node on the client. */ \ |
32 METHOD1(UpdateFocusedNode, int /* node_id */) \ | 35 METHOD1(UpdateFocusedNode, int /* node_id */) \ |
33 \ | 36 \ |
34 /* Response message to EvaluateJavaScript. */ \ | 37 /* Response message to EvaluateJavaScript. */ \ |
35 METHOD2(DidEvaluateJavaScript, int /* call_id */, String /* result */) \ | 38 METHOD2(DidEvaluateJavaScript, int /* call_id */, String /* result */) \ |
36 \ | 39 \ |
37 /* Updates focused node on the client. */ \ | 40 /* Updates focused node on the client. */ \ |
38 METHOD2(FrameNavigate, std::string /* url */, bool /* top_level */) \ | 41 METHOD2(FrameNavigate, std::string /* url */, bool /* top_level */) \ |
39 \ | 42 \ |
40 /* Response to the GetNodeProperties. */ \ | 43 /* Response to the GetNodeProperties. */ \ |
41 METHOD2(DidExecuteUtilityFunction, int /* call_id */, String /* json */) | 44 METHOD2(DidExecuteUtilityFunction, int /* call_id */, String /* json */) \ |
| 45 \ |
| 46 /* Adds message to console. */ \ |
| 47 METHOD3(AddMessageToConsole, String /* message */, \ |
| 48 String /* source_id */, int /* line_no */) |
42 | 49 |
43 DEFINE_RPC_CLASS(ToolsAgentDelegate, TOOLS_AGENT_DELEGATE_STRUCT) | 50 DEFINE_RPC_CLASS(ToolsAgentDelegate, TOOLS_AGENT_DELEGATE_STRUCT) |
44 | 51 |
45 #endif // WEBKIT_GLUE_DEVTOOLS_TOOLS_AGENT_H_ | 52 #endif // WEBKIT_GLUE_DEVTOOLS_TOOLS_AGENT_H_ |
OLD | NEW |