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

Side by Side Diff: ui/base/ime/dummy_text_input_client.h

Issue 80583002: [FYI] All-in-one OnCandidateWindow{Show,Update,Hide} (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef UI_BASE_IME_DUMMY_TEXT_INPUT_CLIENT_H_ 5 #ifndef UI_BASE_IME_DUMMY_TEXT_INPUT_CLIENT_H_
6 #define UI_BASE_IME_DUMMY_TEXT_INPUT_CLIENT_H_ 6 #define UI_BASE_IME_DUMMY_TEXT_INPUT_CLIENT_H_
7 7
8 #include "ui/base/ime/text_input_client.h" 8 #include "ui/base/ime/text_input_client.h"
9 9
10 namespace ui { 10 namespace ui {
(...skipping 24 matching lines...) Expand all
35 virtual bool GetSelectionRange(gfx::Range* range) const OVERRIDE; 35 virtual bool GetSelectionRange(gfx::Range* range) const OVERRIDE;
36 virtual bool SetSelectionRange(const gfx::Range& range) OVERRIDE; 36 virtual bool SetSelectionRange(const gfx::Range& range) OVERRIDE;
37 virtual bool DeleteRange(const gfx::Range& range) OVERRIDE; 37 virtual bool DeleteRange(const gfx::Range& range) OVERRIDE;
38 virtual bool GetTextFromRange(const gfx::Range& range, 38 virtual bool GetTextFromRange(const gfx::Range& range,
39 string16* text) const OVERRIDE; 39 string16* text) const OVERRIDE;
40 virtual void OnInputMethodChanged() OVERRIDE; 40 virtual void OnInputMethodChanged() OVERRIDE;
41 virtual bool ChangeTextDirectionAndLayoutAlignment( 41 virtual bool ChangeTextDirectionAndLayoutAlignment(
42 base::i18n::TextDirection direction) OVERRIDE; 42 base::i18n::TextDirection direction) OVERRIDE;
43 virtual void ExtendSelectionAndDelete(size_t before, size_t after) OVERRIDE; 43 virtual void ExtendSelectionAndDelete(size_t before, size_t after) OVERRIDE;
44 virtual void EnsureCaretInRect(const gfx::Rect& rect) OVERRIDE; 44 virtual void EnsureCaretInRect(const gfx::Rect& rect) OVERRIDE;
45 virtual void OnCandidateWindowShow() OVERRIDE;
46 virtual void OnCandidateWindowUpdate() OVERRIDE;
47 virtual void OnCandidateWindowHide() OVERRIDE;
45 }; 48 };
46 49
47 } // namespace ui 50 } // namespace ui
48 51
49 #endif // UI_BASE_IME_DUMMY_TEXT_INPUT_CLIENT_H_ 52 #endif // UI_BASE_IME_DUMMY_TEXT_INPUT_CLIENT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698