Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(336)

Unified Diff: chrome/test/automation/automation_messages_internal.h

Issue 118441: Fixed 3 tests that failed in hebrew enabled vista... (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 11 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/browser_uitest.cc ('k') | chrome/test/automation/automation_proxy.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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)
« no previous file with comments | « chrome/browser/browser_uitest.cc ('k') | chrome/test/automation/automation_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698