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

Unified Diff: content/browser/renderer_host/render_widget_host_view_win.cc

Issue 23604019: reorder RenderWidgetHostViewPort::TextInputTypeChanged argument (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 3 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
Index: content/browser/renderer_host/render_widget_host_view_win.cc
diff --git a/content/browser/renderer_host/render_widget_host_view_win.cc b/content/browser/renderer_host/render_widget_host_view_win.cc
index f3b8ae20fa9d45b82e54817778d969d6414b4c5b..c2aefde28e13f47f6f6493d7f33eef4b6c4e021e 100644
--- a/content/browser/renderer_host/render_widget_host_view_win.cc
+++ b/content/browser/renderer_host/render_widget_host_view_win.cc
@@ -691,8 +691,8 @@ void RenderWidgetHostViewWin::SetIsLoading(bool is_loading) {
void RenderWidgetHostViewWin::TextInputTypeChanged(
ui::TextInputType type,
- bool can_compose_inline,
- ui::TextInputMode input_mode) {
+ ui::TextInputMode input_mode,
+ bool can_compose_inline) {
if (text_input_type_ != type ||
text_input_mode_ != input_mode ||
can_compose_inline_ != can_compose_inline) {

Powered by Google App Engine
This is Rietveld 408576698