diff options
author | yoichio@chromium.org <yoichio@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-09-04 03:06:23 +0000 |
---|---|---|
committer | yoichio@chromium.org <yoichio@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-09-04 03:06:23 +0000 |
commit | bebb2979ed5620f4ed1768a9eb097ab65ad8597c (patch) | |
tree | 10ac1d7116e1b13698aafe9a4477989066402535 /content/port | |
parent | 49a70df0f0154f73e137d0bf50b22316e3c93f1e (diff) | |
download | chromium_src-bebb2979ed5620f4ed1768a9eb097ab65ad8597c.zip chromium_src-bebb2979ed5620f4ed1768a9eb097ab65ad8597c.tar.gz chromium_src-bebb2979ed5620f4ed1768a9eb097ab65ad8597c.tar.bz2 |
reorder RenderWidgetHostViewPort::TextInputTypeChanged argument
This CL is to intent that we have two different fields that represent input field attributes.
BUG=244688
Review URL: https://chromiumcodereview.appspot.com/23604019
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@221128 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/port')
-rw-r--r-- | content/port/browser/render_widget_host_view_port.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/content/port/browser/render_widget_host_view_port.h b/content/port/browser/render_widget_host_view_port.h index 162a7fb..e398e52 100644 --- a/content/port/browser/render_widget_host_view_port.h +++ b/content/port/browser/render_widget_host_view_port.h @@ -97,8 +97,8 @@ class CONTENT_EXPORT RenderWidgetHostViewPort : public RenderWidgetHostView, // Updates the type of the input method attached to the view. virtual void TextInputTypeChanged(ui::TextInputType type, - bool can_compose_inline, - ui::TextInputMode mode) = 0; + ui::TextInputMode mode, + bool can_compose_inline) = 0; // Cancel the ongoing composition of the input method attached to the view. virtual void ImeCancelComposition() = 0; |