Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2016 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 // Next MinVersion: 1 | |
| 6 | |
| 7 module arc.mojom; | |
| 8 | |
| 9 import "screen_rect.mojom"; | |
| 10 | |
| 11 // Next method ID: 1 | |
| 12 interface FocusHighlightHost { | |
| 13 OnViewFocused@0(ScreenRect rect); | |
| 14 }; | |
| 15 | |
| 16 // Next method ID: 1 | |
| 17 interface FocusHighlightInstance { | |
|
Luis Héctor Chávez
2016/12/07 17:58:56
Can you think of anything else you might want to h
kinaba
2016/12/08 04:07:44
+1
yawano
2016/12/08 09:08:38
No, I don't come up with other things which we wan
Luis Héctor Chávez
2016/12/08 17:16:40
The thing is that spinning off new channels does a
yawano
2016/12/09 09:21:58
One thing might be braille output (https://crbug.c
Luis Héctor Chávez
2016/12/09 16:25:33
Renaming has a bit more overhead (since you effect
yawano
2017/01/11 10:31:33
Renamed to AccessibilityHelper.
| |
| 18 Init@0(FocusHighlightHost host); | |
| 19 }; | |
| OLD | NEW |