| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 // Defines the IPC messages used by the automation interface. | 5 // Defines the IPC messages used by the automation interface. |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/string16.h" | 10 #include "base/string16.h" |
| (...skipping 346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 357 // int - the flags which identify the mouse button(s) for the click, as | 357 // int - the flags which identify the mouse button(s) for the click, as |
| 358 // defined in chrome/views/event.h | 358 // defined in chrome/views/event.h |
| 359 IPC_MESSAGE_CONTROL3(AutomationMsg_WindowClick, | 359 IPC_MESSAGE_CONTROL3(AutomationMsg_WindowClick, |
| 360 int, | 360 int, |
| 361 gfx::Point, | 361 gfx::Point, |
| 362 int) | 362 int) |
| 363 | 363 |
| 364 // This message requests that a key press be performed. | 364 // This message requests that a key press be performed. |
| 365 // Request: | 365 // Request: |
| 366 // int - the handle of the window that's the context for this click | 366 // int - the handle of the window that's the context for this click |
| 367 // int - the app::KeyboardCode of the key that was pressed. | 367 // int - the ui::KeyboardCode of the key that was pressed. |
| 368 // int - the flags which identify the modifiers (shift, ctrl, alt) | 368 // int - the flags which identify the modifiers (shift, ctrl, alt) |
| 369 // associated for, as defined in chrome/views/event.h | 369 // associated for, as defined in chrome/views/event.h |
| 370 IPC_MESSAGE_CONTROL3(AutomationMsg_WindowKeyPress, | 370 IPC_MESSAGE_CONTROL3(AutomationMsg_WindowKeyPress, |
| 371 int, | 371 int, |
| 372 int, | 372 int, |
| 373 int) | 373 int) |
| 374 | 374 |
| 375 // This message notifies the AutomationProvider to create a tab which is | 375 // This message notifies the AutomationProvider to create a tab which is |
| 376 // hosted by an external process. | 376 // hosted by an external process. |
| 377 // Request: | 377 // Request: |
| (...skipping 1060 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1438 int, | 1438 int, |
| 1439 FilePath, | 1439 FilePath, |
| 1440 bool) | 1440 bool) |
| 1441 | 1441 |
| 1442 // Notify the JavaScript engine in the render to change its parameters | 1442 // Notify the JavaScript engine in the render to change its parameters |
| 1443 // while performing stress testing. | 1443 // while performing stress testing. |
| 1444 IPC_MESSAGE_ROUTED3(AutomationMsg_JavaScriptStressTestControl, | 1444 IPC_MESSAGE_ROUTED3(AutomationMsg_JavaScriptStressTestControl, |
| 1445 int /* tab handle */, | 1445 int /* tab handle */, |
| 1446 int /* command */, | 1446 int /* command */, |
| 1447 int /* type or run */) | 1447 int /* type or run */) |
| OLD | NEW |