Chromium Code Reviews| Index: chrome/test/automation/automation_messages_internal.h |
| =================================================================== |
| --- chrome/test/automation/automation_messages_internal.h (revision 5108) |
| +++ chrome/test/automation/automation_messages_internal.h (working copy) |
| @@ -795,11 +795,16 @@ |
| // This messages sets an int-value preference. |
| IPC_MESSAGE_ROUTED3(AutomationMsg_SetIntPreferenceRequest, |
| - int /* browser handle */, |
| + int /* browser handle */, |
| std::wstring /* pref name */, |
| int /* value */) |
| IPC_MESSAGE_ROUTED1(AutomationMsg_SetIntPreferenceResponse, |
| bool /* success */) |
| + // Querries whether an app modal dialog is currently being shown. (i.e. a |
|
Finnur
2008/11/11 07:30:03
Queries (one r)
|
| + // javascript alert). |
| + IPC_MESSAGE_ROUTED0(AutomationMsg_ShowingAppModalDialogRequest) |
| + IPC_MESSAGE_ROUTED1(AutomationMsg_ShowingAppModalDialogResponse, |
| + bool /* showning dialog */) |
|
Finnur
2008/11/11 07:30:03
Showing (one n).
|
| + |
| IPC_END_MESSAGES(Automation) |
| - |