summaryrefslogtreecommitdiffstats
path: root/chrome/common
diff options
context:
space:
mode:
authoravi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-02-08 15:42:00 +0000
committeravi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-02-08 15:42:00 +0000
commit7024d3eea1d8328883736f5cd3cbef480aa0e740 (patch)
tree5fc40e7da24d79306321037359bce7bd97bcf36b /chrome/common
parente9ff5e31b28b6ee684ceaf47afe4f483163f6d1d (diff)
downloadchromium_src-7024d3eea1d8328883736f5cd3cbef480aa0e740.zip
chromium_src-7024d3eea1d8328883736f5cd3cbef480aa0e740.tar.gz
chromium_src-7024d3eea1d8328883736f5cd3cbef480aa0e740.tar.bz2
Remove wstring from RVH's run Javascript command.
BUG=23581 TEST=no visible changes; all tests pass Review URL: http://codereview.chromium.org/6312154 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74118 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common')
-rw-r--r--chrome/common/automation_messages_internal.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/chrome/common/automation_messages_internal.h b/chrome/common/automation_messages_internal.h
index 8ff405d..1a6418a 100644
--- a/chrome/common/automation_messages_internal.h
+++ b/chrome/common/automation_messages_internal.h
@@ -133,7 +133,7 @@ IPC_SYNC_MESSAGE_CONTROL2_1(AutomationMsg_Tab,
IPC_SYNC_MESSAGE_CONTROL1_2(AutomationMsg_TabTitle,
int,
int,
- std::wstring)
+ string16)
// This message requests the url of the tab with the given handle.
// The return value contains a success flag and the URL string. The URL will
@@ -161,8 +161,8 @@ IPC_MESSAGE_CONTROL1(AutomationMsg_HandleUnused,
// authentication challenge.
IPC_SYNC_MESSAGE_CONTROL3_1(AutomationMsg_SetAuth,
int /* tab handle */,
- std::wstring /* username */,
- std::wstring /* password */,
+ string16 /* username */,
+ string16 /* password */,
AutomationMsg_NavigationResponseValues /* status */)
// This message tells the AutomationProvider to cancel the login in the
@@ -195,8 +195,8 @@ IPC_SYNC_MESSAGE_CONTROL1_1(AutomationMsg_NeedsAuth,
// a serialized JSON string response.
IPC_SYNC_MESSAGE_CONTROL3_1(AutomationMsg_DomOperation,
int /* tab handle */,
- std::wstring /* context_frame */,
- std::wstring /* the javascript to be executed */,
+ string16 /* context_frame */,
+ string16 /* the javascript to be executed */,
std::string /* the serialized json string containg
the result of a javascript
execution */)
@@ -1236,13 +1236,13 @@ IPC_SYNC_MESSAGE_CONTROL4_1(AutomationMsg_AddBookmarkGroup,
int /* browser_handle */,
int64 /* parent_id */,
int /* index */,
- std::wstring /* title */,
+ string16 /* title */,
bool /* success */)
IPC_SYNC_MESSAGE_CONTROL5_1(AutomationMsg_AddBookmarkURL,
int /* browser_handle */,
int64 /* parent_id */,
int /* index */,
- std::wstring /* title */,
+ string16 /* title */,
GURL /* url */,
bool /* success */)
IPC_SYNC_MESSAGE_CONTROL4_1(AutomationMsg_ReparentBookmark,
@@ -1254,7 +1254,7 @@ IPC_SYNC_MESSAGE_CONTROL4_1(AutomationMsg_ReparentBookmark,
IPC_SYNC_MESSAGE_CONTROL3_1(AutomationMsg_SetBookmarkTitle,
int /* browser_handle */,
int64 /* id */,
- std::wstring /* title */,
+ string16 /* title */,
bool /* success */)
IPC_SYNC_MESSAGE_CONTROL3_1(AutomationMsg_SetBookmarkURL,
int /* browser_handle */,