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

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

Issue 21189003: Change IME conversion status by focusing input element (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Modify Created 7 years, 4 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.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..8804c4d3c609c5a18540d487f84fac3d4795acb2 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();
@@ -534,6 +538,7 @@ class RenderWidgetHostViewWin
// method.
ui::TextInputType text_input_type_;
bool can_compose_inline_;
+ ui::TextInputMode text_input_mode_;
Yohei Yukawa 2013/08/07 04:17:18 Please move this field next to |text_input_type_|
yoichio 2013/08/07 09:33:39 Done.
ScopedVector<ui::ViewProp> props_;

Powered by Google App Engine
This is Rietveld 408576698