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

Unified Diff: mojo/services/accessibility/public/interfaces/accessibility.mojom

Issue 861683003: Move services code brought in from Mojo to live under //third_party. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 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: mojo/services/accessibility/public/interfaces/accessibility.mojom
diff --git a/mojo/services/accessibility/public/interfaces/accessibility.mojom b/mojo/services/accessibility/public/interfaces/accessibility.mojom
deleted file mode 100644
index 3958388cebbfbd6857128fde6ea25adc133b8c5e..0000000000000000000000000000000000000000
--- a/mojo/services/accessibility/public/interfaces/accessibility.mojom
+++ /dev/null
@@ -1,35 +0,0 @@
-// Copyright 2014 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.
-
-module mojo;
-
-import "geometry/public/interfaces/geometry.mojom";
-
-interface AxProvider {
- GetTree() => (array<AxNode> nodes);
-};
-
-struct AxNode {
- // Must be non-zero.
- uint32 id;
-
- // Can be zero if the node has no parent or next sibling.
- uint32 parent_id;
- uint32 next_sibling_id;
-
- mojo.Rect bounds;
-
- // At most one of the below will be present.
- // TODO(aa): These should become a union.
- AxLink? link;
- AxText? text;
-};
-
-struct AxLink {
- string url;
-};
-
-struct AxText {
- string content;
-};
« no previous file with comments | « mojo/services/accessibility/public/interfaces/BUILD.gn ('k') | mojo/services/clipboard/public/interfaces/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698