Chromium Code Reviews| Index: ui/base/ime/text_input_client.h |
| diff --git a/ui/base/ime/text_input_client.h b/ui/base/ime/text_input_client.h |
| index 6581519d02f22721c45dd0df864802b99354f0a1..ecc15c00880e74a49fa0bfc550a87eef7d65f99b 100644 |
| --- a/ui/base/ime/text_input_client.h |
| +++ b/ui/base/ime/text_input_client.h |
| @@ -166,6 +166,9 @@ class UI_BASE_EXPORT TextInputClient { |
| virtual void OnCandidateWindowUpdated() = 0; |
| // Called when IME hides the candidate window. |
| virtual void OnCandidateWindowHidden() = 0; |
| + |
| + virtual bool IsEditingCommandEnabled(int command_id) = 0; |
|
Yuki
2014/06/03 07:52:12
Do you know TextEditCommandAuraLinux in ui/events/
Ben Goodger (Google)
2014/06/05 15:38:20
You should provide some documentation here for wha
Andre
2014/06/05 17:39:22
Done.
|
| + virtual void ExecuteEditingCommand(int command_id) = 0; |
| }; |
| } // namespace ui |