Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(584)

Side by Side Diff: components/arc/common/accessibility_helper.mojom

Issue 2559663002: Support focus highlight in Android window (Closed)
Patch Set: Fix a nit. Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698