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

Unified 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 side-by-side diff with in-line comments
Download patch
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);
+};

Powered by Google App Engine
This is Rietveld 408576698