Chromium Code Reviews| Index: components/arc/common/accessibility_helper.mojom |
| diff --git a/components/arc/common/accessibility_helper.mojom b/components/arc/common/accessibility_helper.mojom |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..88acf5256bd85fe8695948a1920732a11d9b216e |
| --- /dev/null |
| +++ b/components/arc/common/accessibility_helper.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 AccessibilityHelperHost { |
| + OnViewFocused@0(ScreenRect rect); |
|
David Tseng
2017/01/11 19:26:53
Just FYI. We will eventually want to pass through
David Tseng
2017/01/11 19:34:55
Quick correction. We want an array<AccessibilityNo
yawano
2017/01/17 02:29:21
Sorry, why we need to send it as an array? I thoug
David Tseng
2017/01/17 18:46:32
It would be nice to have just one api.
Yes, an ar
yawano
2017/01/18 01:33:38
I feel it costly to serialize accessibility node i
David Tseng
2017/01/18 18:54:09
Yes clearly we'd prefer to send over diffs of the
|
| +}; |
| + |
| +// Next method ID: 1 |
| +interface AccessibilityHelperInstance { |
| + Init@0(AccessibilityHelperHost host); |
| +}; |