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 // AccessibilityEventType is a enum which corresponds to event types of Accessib ilityEvent in | |
|
kinaba
2017/01/19 03:50:02
I'm not sure about the coding style for mojom so i
yawano
2017/01/19 06:30:35
Done.
Also fixed other lines in this file as they
| |
| 12 // Android. | |
| 13 [extensible] | |
| 14 enum AccessibilityEventType { | |
| 15 VIEW_FOCUSED, | |
| 16 }; | |
| 17 | |
| 18 // AccessibilityNodeInfoData is a struct to contain info of AccessibilityNodeInf o in Android. | |
| 19 struct AccessibilityNodeInfoData { | |
| 20 ScreenRect boundsInScreen; | |
| 21 }; | |
| 22 | |
| 23 // Next method ID: 1 | |
| 24 interface AccessibilityHelperHost { | |
| 25 OnAccessibilityEvent@0(AccessibilityEventType eventType, AccessibilityNodeInfo Data eventSource); | |
| 26 }; | |
| 27 | |
| 28 // Next method ID: 1 | |
| 29 interface AccessibilityHelperInstance { | |
| 30 Init@0(AccessibilityHelperHost host); | |
| 31 }; | |
| OLD | NEW |