| Index: ui/views/ime/input_method_bridge.h
|
| diff --git a/ui/views/ime/input_method_bridge.h b/ui/views/ime/input_method_bridge.h
|
| index 03ea567aa6db2fe9b0b069a3302ab47fb0411494..86308fbc75dbe372f933ae44d50f5b152de6448d 100644
|
| --- a/ui/views/ime/input_method_bridge.h
|
| +++ b/ui/views/ime/input_method_bridge.h
|
| @@ -64,13 +64,13 @@ class InputMethodBridge : public InputMethodBase,
|
| virtual bool GetCompositionCharacterBounds(uint32 index,
|
| gfx::Rect* rect) OVERRIDE;
|
| virtual bool HasCompositionText() OVERRIDE;
|
| - virtual bool GetTextRange(ui::Range* range) OVERRIDE;
|
| - virtual bool GetCompositionTextRange(ui::Range* range) OVERRIDE;
|
| - virtual bool GetSelectionRange(ui::Range* range) OVERRIDE;
|
| - virtual bool SetSelectionRange(const ui::Range& range) OVERRIDE;
|
| - virtual bool DeleteRange(const ui::Range& range) OVERRIDE;
|
| + virtual bool GetTextRange(gfx::Range* range) OVERRIDE;
|
| + virtual bool GetCompositionTextRange(gfx::Range* range) OVERRIDE;
|
| + virtual bool GetSelectionRange(gfx::Range* range) OVERRIDE;
|
| + virtual bool SetSelectionRange(const gfx::Range& range) OVERRIDE;
|
| + virtual bool DeleteRange(const gfx::Range& range) OVERRIDE;
|
| virtual bool GetTextFromRange(
|
| - const ui::Range& range, string16* text) OVERRIDE;
|
| + const gfx::Range& range, string16* text) OVERRIDE;
|
| virtual void OnInputMethodChanged() OVERRIDE;
|
| virtual bool ChangeTextDirectionAndLayoutAlignment(
|
| base::i18n::TextDirection direction) OVERRIDE;
|
|
|