1// Copyright 2022 The Chromium Authors 2// Use of this source code is governed by a BSD-style license that can be 3// found in the LICENSE file. 4{ 5 children: [ 6 { 7 name: "isolated_a11y_manager", 8 url: "fuchsia-pkg://fuchsia.com/a11y-manager#meta/a11y-manager.cm", 9 }, 10 { 11 name: "isolated_text_manager", 12 url: "fuchsia-pkg://fuchsia.com/text_manager#meta/text_manager.cm", 13 }, 14 ], 15 offer: [ 16 { 17 protocol: "fuchsia.logger.LogSink", 18 from: "parent", 19 to: [ 20 "#isolated_a11y_manager", 21 "#isolated_text_manager", 22 ], 23 }, 24 ], 25 use: [ 26 { 27 protocol: [ 28 "fuchsia.ui.composition.Allocator", 29 "fuchsia.ui.composition.Flatland", 30 "fuchsia.ui.scenic.Scenic", 31 ], 32 }, 33 { 34 protocol: "fuchsia.accessibility.semantics.SemanticsManager", 35 from: "#isolated_a11y_manager", 36 }, 37 { 38 protocol: "fuchsia.ui.input3.Keyboard", 39 from: "#isolated_text_manager", 40 }, 41 ], 42} 43