Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 module keyboard; | |
| 6 | |
| 7 interface KeyboardClient { | |
| 8 commitText(string text, int32 newCursorPosition); | |
| 9 setComposingText(string text, int32 newCursorPosition); | |
| 10 setComposingRegion(int32 start, int32 end); | |
| 11 }; | |
| 12 | |
| 13 interface KeyboardService { | |
| 14 Show(KeyboardClient client); | |
| 15 Hide(); | |
| 16 }; | |
| OLD | NEW |