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

Unified Diff: chrome/common/render_messages_internal.h

Issue 42495: A tricky fix for Issue 1845 (Take 2).... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 9 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/renderer_host/render_widget_host_view_win.cc ('k') | chrome/renderer/render_view.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/render_messages_internal.h
===================================================================
--- chrome/common/render_messages_internal.h (revision 12427)
+++ chrome/common/render_messages_internal.h (working copy)
@@ -529,6 +529,17 @@
IPC_MESSAGE_ROUTED2(ViewMsg_HandleExtensionMessage,
std::string /* message */,
int /* channel_id */)
+
+ // 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")
+ IPC_MESSAGE_ROUTED1(ViewMsg_SetTextDirection,
+ int /* direction */)
IPC_END_MESSAGES(View)
« no previous file with comments | « chrome/browser/renderer_host/render_widget_host_view_win.cc ('k') | chrome/renderer/render_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698