diff options
author | jcivelli@chromium.org <jcivelli@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-08-10 22:18:27 +0000 |
---|---|---|
committer | jcivelli@chromium.org <jcivelli@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-08-10 22:18:27 +0000 |
commit | b556c2ea563365710107e788eea58d09239b9b50 (patch) | |
tree | 9069761166905b0bb2f7abc1002d81d61897fd84 /content/renderer/webplugin_delegate_proxy.cc | |
parent | f78087aa2c43bb7298d027078b7c353b77ad6e98 (diff) | |
download | chromium_src-b556c2ea563365710107e788eea58d09239b9b50.zip chromium_src-b556c2ea563365710107e788eea58d09239b9b50.tar.gz chromium_src-b556c2ea563365710107e788eea58d09239b9b50.tar.bz2 |
Adding selection text direction to SelectionBoundsChanged.
Adding the selection text direction to the notification that the selection
bounds have changed. This is used with touch UI.
BUG=138944
TEST=All tests should pass.
Review URL: https://chromiumcodereview.appspot.com/10855036
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@151137 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/renderer/webplugin_delegate_proxy.cc')
-rw-r--r-- | content/renderer/webplugin_delegate_proxy.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/content/renderer/webplugin_delegate_proxy.cc b/content/renderer/webplugin_delegate_proxy.cc index 2bf8dbd..8772324 100644 --- a/content/renderer/webplugin_delegate_proxy.cc +++ b/content/renderer/webplugin_delegate_proxy.cc @@ -1125,7 +1125,9 @@ void WebPluginDelegateProxy::OnNotifyIMEStatus(int input_type, true)); render_view_->Send(new ViewHostMsg_SelectionBoundsChanged( - render_view_->routing_id(), caret_rect, caret_rect)); + render_view_->routing_id(), + caret_rect, WebKit::WebTextDirectionLeftToRight, + caret_rect, WebKit::WebTextDirectionLeftToRight)); } #endif |