diff options
author | yusukes@google.com <yusukes@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-11 04:16:52 +0000 |
---|---|---|
committer | yusukes@google.com <yusukes@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-11 04:16:52 +0000 |
commit | b7ea156eb3093692106554c2342a985de4a54acc (patch) | |
tree | d309a04da001a7e45cfce79ca9a71270d66a006b /views/controls/textfield/native_textfield_win.h | |
parent | 8db08901e18317a26815cea831699443f30c2677 (diff) | |
download | chromium_src-b7ea156eb3093692106554c2342a985de4a54acc.zip chromium_src-b7ea156eb3093692106554c2342a985de4a54acc.tar.gz chromium_src-b7ea156eb3093692106554c2342a985de4a54acc.tar.bz2 |
Move views/ime/text_input_client.h to ui/base/ime/.
- Remove Views dependencies from text_input_client.h.
- Change namespace from views:: to ui::.
This change is necessary for RenderWidgetHostViewAura to support IME since RWHVA is Views agnostic and cannot directly use classes under views/ime/.
BUG=chromium:97261
TEST=try
Review URL: http://codereview.chromium.org/8509034
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109583 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'views/controls/textfield/native_textfield_win.h')
-rw-r--r-- | views/controls/textfield/native_textfield_win.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/views/controls/textfield/native_textfield_win.h b/views/controls/textfield/native_textfield_win.h index bb8cb96..459c095 100644 --- a/views/controls/textfield/native_textfield_win.h +++ b/views/controls/textfield/native_textfield_win.h @@ -92,7 +92,7 @@ class NativeTextfieldWin virtual bool HandleKeyReleased(const views::KeyEvent& event) OVERRIDE; virtual void HandleFocus() OVERRIDE; virtual void HandleBlur() OVERRIDE; - virtual TextInputClient* GetTextInputClient() OVERRIDE; + virtual ui::TextInputClient* GetTextInputClient() OVERRIDE; virtual void ApplyStyleRange(const gfx::StyleRange& style) OVERRIDE; virtual void ApplyDefaultStyle() OVERRIDE; virtual void ClearEditHistory() OVERRIDE; |