| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 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 import 'package:sky/services/keyboard/keyboard.mojom.dart'; | 5 import 'package:sky/services/keyboard/keyboard.mojom.dart'; |
| 6 | 6 |
| 7 typedef void StringUpdated(); | 7 typedef void StringUpdated(); |
| 8 | 8 |
| 9 class TextRange { | 9 class TextRange { |
| 10 final int start; | 10 final int start; |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 composing = _replaceOrAppend(composing, text); | 110 composing = _replaceOrAppend(composing, text); |
| 111 selection = new TextRange.collapsed(composing.end); | 111 selection = new TextRange.collapsed(composing.end); |
| 112 onUpdated(); | 112 onUpdated(); |
| 113 } | 113 } |
| 114 | 114 |
| 115 void setSelection(int start, int end) { | 115 void setSelection(int start, int end) { |
| 116 selection = new TextRange(start: start, end: end); | 116 selection = new TextRange(start: start, end: end); |
| 117 onUpdated(); | 117 onUpdated(); |
| 118 } | 118 } |
| 119 } | 119 } |
| OLD | NEW |