summaryrefslogtreecommitdiffstats
path: root/content/renderer/webplugin_delegate_proxy.cc
diff options
context:
space:
mode:
authorjcivelli@chromium.org <jcivelli@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-08-10 22:18:27 +0000
committerjcivelli@chromium.org <jcivelli@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-08-10 22:18:27 +0000
commitb556c2ea563365710107e788eea58d09239b9b50 (patch)
tree9069761166905b0bb2f7abc1002d81d61897fd84 /content/renderer/webplugin_delegate_proxy.cc
parentf78087aa2c43bb7298d027078b7c353b77ad6e98 (diff)
downloadchromium_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.cc4
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