| Index: trunk/src/ui/base/ime/win/mock_tsf_bridge.h
|
| ===================================================================
|
| --- trunk/src/ui/base/ime/win/mock_tsf_bridge.h (revision 202706)
|
| +++ trunk/src/ui/base/ime/win/mock_tsf_bridge.h (working copy)
|
| @@ -23,7 +23,6 @@
|
| virtual void Shutdown() OVERRIDE;
|
| virtual bool CancelComposition() OVERRIDE;
|
| virtual void OnTextInputTypeChanged(TextInputClient* client) OVERRIDE;
|
| - virtual void OnTextLayoutChanged() OVERRIDE;
|
| virtual void SetFocusedClient(HWND focused_window,
|
| TextInputClient* client) OVERRIDE;
|
| virtual void RemoveFocusedClient(TextInputClient* client) OVERRIDE;
|
| @@ -47,11 +46,6 @@
|
| return cancel_composition_call_count_;
|
| }
|
|
|
| - // Call count of OnTextLayoutChanged().
|
| - int on_text_layout_changed() const {
|
| - return on_text_layout_changed_;
|
| - }
|
| -
|
| // Call count of AssociateFocus().
|
| int associate_focus_call_count() const { return associate_focus_call_count_; }
|
|
|
| @@ -81,7 +75,6 @@
|
| int enable_ime_call_count_;
|
| int disalbe_ime_call_count_;
|
| int cancel_composition_call_count_;
|
| - int on_text_layout_changed_;
|
| int associate_focus_call_count_;
|
| int set_focused_client_call_count_;
|
| int remove_focused_client_call_count_;
|
|
|