| Index: chrome/test/automation/automation_messages_internal.h
|
| ===================================================================
|
| --- chrome/test/automation/automation_messages_internal.h (revision 18052)
|
| +++ chrome/test/automation/automation_messages_internal.h (working copy)
|
| @@ -183,7 +183,7 @@
|
| int, // tab handle
|
| std::wstring, // username
|
| std::wstring, // password
|
| - int) // status
|
| + int) // status
|
|
|
| // This message tells the AutomationProvider to cancel the login in the
|
| // specified tab.
|
| @@ -206,18 +206,18 @@
|
| // This message asks the AutomationProvider whether a tab is waiting for
|
| // login info.
|
| IPC_SYNC_MESSAGE_ROUTED1_1(AutomationMsg_NeedsAuth,
|
| - int, // tab handle
|
| - bool) // status
|
| + int, // tab handle
|
| + bool) // status
|
|
|
| // This message requests the AutomationProvider to apply a certain
|
| // accelerator. It is completely asynchronous with the resulting accelerator
|
| // action.
|
| IPC_SYNC_MESSAGE_ROUTED2_0(AutomationMsg_ApplyAccelerator,
|
| - int, // window handle
|
| - int) // accelerator id like (IDC_BACK,
|
| - // IDC_FORWARD, etc)
|
| - // The list can be found at
|
| - // chrome/app/chrome_dll_resource.h
|
| + int, // window handle
|
| + int) // accelerator id like (IDC_BACK,
|
| + // IDC_FORWARD, etc)
|
| + // The list can be found at
|
| + // chrome/app/chrome_dll_resource.h
|
|
|
| // This message requests that the AutomationProvider executes a JavaScript,
|
| // which is sent embedded in a 'javascript:' URL.
|
| @@ -451,8 +451,8 @@
|
| // Response:
|
| // None expected
|
| IPC_MESSAGE_ROUTED2(AutomationMsg_NavigationStateChanged,
|
| - int, // tab handle
|
| - int) // TabContents::InvalidateTypes
|
| + int, // tab handle
|
| + int) // TabContents::InvalidateTypes
|
|
|
| // This message is an outgoing message from Chrome to an external host.
|
| // It is a notification that the target URL has changed (the target URL
|
| @@ -939,4 +939,10 @@
|
| int /* tab_handle */,
|
| int /* blocked_popup_count */)
|
|
|
| +
|
| + // This message retrieves the locale of the browser process. On success
|
| + // |chrome_locale| will contain the locale as reported by ICU. On failure
|
| + // |chrome_locale| is the empty string.
|
| + IPC_SYNC_MESSAGE_ROUTED0_1(AutomationMsg_GetBrowserLocale,
|
| + string16 /* chrome_locale */)
|
| IPC_END_MESSAGES(Automation)
|
|
|