1// Copyright 2022 The ChromiumOS Authors 2// Use of this source code is governed by a BSD-style license that can be 3// found in the LICENSE file. 4 5syntax = "proto3"; 6 7option go_package = "go.chromium.org/chromiumos/config/go/api/software"; 8 9package chromiumos.config.api.software; 10 11message UsbConfig { 12 message TypeCD { 13 // AP driven alternate mode entry on this system should be restricted 14 // to DisplayPort alternate mode 15 bool dp_only = 1; 16 } 17 18 TypeCD typecd = 1; 19} 20