| Index: content/browser/renderer_host/render_widget_host_view_win.h
|
| diff --git a/content/browser/renderer_host/render_widget_host_view_win.h b/content/browser/renderer_host/render_widget_host_view_win.h
|
| index d613f3a236a1424df52c99f8c614ab2927aab641..a8eeafe95ecd7d31b0ec497e8c77b308330329bb 100644
|
| --- a/content/browser/renderer_host/render_widget_host_view_win.h
|
| +++ b/content/browser/renderer_host/render_widget_host_view_win.h
|
| @@ -12,6 +12,7 @@
|
| #include <vector>
|
|
|
| #include "base/compiler_specific.h"
|
| +#include "base/gtest_prod_util.h"
|
| #include "base/memory/scoped_ptr.h"
|
| #include "base/memory/scoped_vector.h"
|
| #include "base/memory/weak_ptr.h"
|
| @@ -360,6 +361,9 @@ class RenderWidgetHostViewWin
|
| void OnFinalMessage(HWND window);
|
|
|
| private:
|
| + FRIEND_TEST_ALL_PREFIXES(RenderWidgetHostViewWinBrowserTest,
|
| + TextInputTypeChanged);
|
| +
|
| // Updates the display cursor to the current cursor if the cursor is over this
|
| // render view.
|
| void UpdateCursorIfOverSelf();
|
| @@ -533,6 +537,7 @@ class RenderWidgetHostViewWin
|
| // Stores the current text input type received by TextInputStateChanged()
|
| // method.
|
| ui::TextInputType text_input_type_;
|
| + ui::TextInputMode text_input_mode_;
|
| bool can_compose_inline_;
|
|
|
| ScopedVector<ui::ViewProp> props_;
|
|
|