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 AccessibilityHelperHost { | |
| 13 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
| |
| 14 }; | |
| 15 | |
| 16 // Next method ID: 1 | |
| 17 interface AccessibilityHelperInstance { | |
| 18 Init@0(AccessibilityHelperHost host); | |
| 19 }; | |
| OLD | NEW |