chromium/services/network/public/mojom/optional_bool.mojom

// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

module network.mojom;

// Augments a bool to include an 'unset' value.
enum OptionalBool {
  kUnset = 0,
  kFalse = 1,
  kTrue = 2,
};