blob: 97cd752f9b43a5e9162f944458f4c9afb2198927 [file] [log] [blame]
// Copyright 2021 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// This file is generated by `tools/generate_automation2_constants.py`.
// Package restriction describes the restriction state of a chrome.automation AutomationNode.
package restriction
// Restriction describes the restriction state of a chrome.automation AutomationNode.
type Restriction string
// As defined in https://chromium.googlesource.com/chromium/src/+/refs/heads/main/extensions/common/api/automation.idl
const (
Disabled Restriction = "disabled"
ReadOnly Restriction = "readOnly"
None Restriction = ""
)