| Index: chrome/common/render_messages_internal.h
|
| ===================================================================
|
| --- chrome/common/render_messages_internal.h (revision 20851)
|
| +++ chrome/common/render_messages_internal.h (working copy)
|
| @@ -371,11 +371,11 @@
|
| // * ime_string (std::wstring)
|
| // Represents the string retrieved from IME (Input Method Editor)
|
| IPC_MESSAGE_ROUTED5(ViewMsg_ImeSetComposition,
|
| - int, /* string_type */
|
| + WebKit::WebCompositionCommand, /* command */
|
| int, /* cursor_position */
|
| int, /* target_start */
|
| int, /* target_end */
|
| - std::wstring /* ime_string */ )
|
| + string16 /* ime_string */ )
|
|
|
| // This passes a set of webkit preferences down to the renderer.
|
| IPC_MESSAGE_ROUTED1(ViewMsg_UpdateWebPreferences, WebPreferences)
|
| @@ -568,16 +568,9 @@
|
| std::string /* extension_id */,
|
| std::vector<std::string> /* page_action_ids */)
|
|
|
| - // Changes the text direction of a selected input field.
|
| - // * direction (int)
|
| - // Represents the new text direction.
|
| - // Its possible values are listed below:
|
| - // Value New Text Direction
|
| - // WEB_TEXT_DIRECTION_DEFAULT NaturalWritingDirection ("inherit")
|
| - // WEB_TEXT_DIRECTION_LTR LeftToRightWritingDirection ("rtl")
|
| - // WEB_TEXT_DIRECTION_RTL RightToLeftWritingDirection ("ltr")
|
| + // Changes the text direction of the currently selected input field (if any).
|
| IPC_MESSAGE_ROUTED1(ViewMsg_SetTextDirection,
|
| - int /* direction */)
|
| + WebKit::WebTextDirection /* direction */)
|
|
|
| // Tells the renderer to clear the focused node (if any).
|
| IPC_MESSAGE_ROUTED0(ViewMsg_ClearFocusedNode)
|
|
|