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

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

Issue 7041003: Show composition text on IME panel when Pepper plugin is focused (Linux). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Separated the preedit-needed flag to a different enum. Created 9 years, 6 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: chrome/browser/renderer_host/render_widget_host_view_win.h
diff --git a/chrome/browser/renderer_host/render_widget_host_view_win.h b/chrome/browser/renderer_host/render_widget_host_view_win.h
index ce210edf4c489a568bfacfedcd508c6a7d5bf1d9..62db24f222aab8a62b4a20eed4a7dde7ee6e8016 100644
--- a/chrome/browser/renderer_host/render_widget_host_view_win.h
+++ b/chrome/browser/renderer_host/render_widget_host_view_win.h
@@ -146,7 +146,8 @@ class RenderWidgetHostViewWin
virtual gfx::Rect GetViewBounds() const OVERRIDE;
virtual void UpdateCursor(const WebCursor& cursor) OVERRIDE;
virtual void SetIsLoading(bool is_loading) OVERRIDE;
- virtual void ImeUpdateTextInputState(WebKit::WebTextInputType type,
+ virtual void ImeUpdateTextInputState(ui::TextInputType type,
+ ui::TextInputPreeditType preedit_type,
const gfx::Rect& caret_rect) OVERRIDE;
virtual void ImeCancelComposition() OVERRIDE;
virtual void DidUpdateBackingStore(
@@ -360,7 +361,7 @@ class RenderWidgetHostViewWin
// Stores the current text input type received by ImeUpdateTextInputState()
// method.
- WebKit::WebTextInputType text_input_type_;
+ ui::TextInputType text_input_type_;
ScopedVector<ui::ViewProp> props_;

Powered by Google App Engine
This is Rietveld 408576698