Chromium Code Reviews| Index: components/arc/common/focus_highlight.mojom |
| diff --git a/components/arc/common/focus_highlight.mojom b/components/arc/common/focus_highlight.mojom |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..6cda7fd93927f921b40a9b843e1ac29372f095bd |
| --- /dev/null |
| +++ b/components/arc/common/focus_highlight.mojom |
| @@ -0,0 +1,19 @@ |
| +// Copyright 2016 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +// Next MinVersion: 1 |
| + |
| +module arc.mojom; |
| + |
| +import "screen_rect.mojom"; |
| + |
| +// Next method ID: 1 |
| +interface FocusHighlightHost { |
| + OnViewFocused@0(ScreenRect rect); |
| +}; |
| + |
| +// Next method ID: 1 |
| +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.
|
| + Init@0(FocusHighlightHost host); |
| +}; |