OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 CONTENT_RENDERER_DOM_AUTOMATION_CONTROLLER_H_ | 5 #ifndef CONTENT_RENDERER_DOM_AUTOMATION_CONTROLLER_H_ |
6 #define CONTENT_RENDERER_DOM_AUTOMATION_CONTROLLER_H_ | 6 #define CONTENT_RENDERER_DOM_AUTOMATION_CONTROLLER_H_ |
7 | 7 |
8 #include "ipc/ipc_sender.h" | 8 #include "ipc/ipc_sender.h" |
9 #include "webkit/glue/cpp_bound_class.h" | 9 #include "webkit/renderer/cpp_bound_class.h" |
10 | 10 |
11 /* DomAutomationController class: | 11 /* DomAutomationController class: |
12 Bound to Javascript window.domAutomationController object. | 12 Bound to Javascript window.domAutomationController object. |
13 At the very basic, this object makes any native value (string, numbers, | 13 At the very basic, this object makes any native value (string, numbers, |
14 boolean) from javascript available to the automation host in Cpp. | 14 boolean) from javascript available to the automation host in Cpp. |
15 Any renderer implementation that is built with this binding will allow the | 15 Any renderer implementation that is built with this binding will allow the |
16 above facility. | 16 above facility. |
17 The intended use of this object is to expose the DOM Objects and their | 17 The intended use of this object is to expose the DOM Objects and their |
18 attributes to the automation host. | 18 attributes to the automation host. |
19 | 19 |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 IPC::Sender* sender_; | 119 IPC::Sender* sender_; |
120 | 120 |
121 // Refer to the comments at the top of the file for more details. | 121 // Refer to the comments at the top of the file for more details. |
122 int routing_id_; // routing id to be used by first channel. | 122 int routing_id_; // routing id to be used by first channel. |
123 int automation_id_; // routing id to be used by the next channel. | 123 int automation_id_; // routing id to be used by the next channel. |
124 }; | 124 }; |
125 | 125 |
126 } // namespace content | 126 } // namespace content |
127 | 127 |
128 #endif // CONTENT_RENDERER_DOM_AUTOMATION_CONTROLLER_H_ | 128 #endif // CONTENT_RENDERER_DOM_AUTOMATION_CONTROLLER_H_ |
OLD | NEW |