blob: f34bef7ced8fd282a791e7908b3b8f328c4d5d30 [file] [log] [blame]
// 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,
};