Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2017 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 // AccessibilityEventType is a enum which corresponds to event types of | |
| 12 // AccessibilityEvent in Android. | |
| 13 [extensible] | |
|
Luis Héctor Chávez
2017/01/19 17:17:56
nit: [Extensible]
yawano
2017/01/20 06:52:31
Done.
| |
| 14 enum AccessibilityEventType { | |
| 15 VIEW_FOCUSED, | |
| 16 }; | |
| 17 | |
| 18 // AccessibilityNodeInfoData is a struct to contain info of | |
| 19 // AccessibilityNodeInfo in Android. | |
| 20 struct AccessibilityNodeInfoData { | |
| 21 ScreenRect boundsInScreen; | |
| 22 }; | |
| 23 | |
| 24 // Next method ID: 1 | |
| 25 interface AccessibilityHelperHost { | |
| 26 OnAccessibilityEvent@0(AccessibilityEventType eventType, | |
| 27 AccessibilityNodeInfoData eventSource); | |
| 28 }; | |
| 29 | |
| 30 // Next method ID: 1 | |
| 31 interface AccessibilityHelperInstance { | |
| 32 Init@0(AccessibilityHelperHost host); | |
| 33 }; | |
| OLD | NEW |