channel.mojom 359 B

1234567891011121314
  1. // Copyright 2020 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. module extensions.mojom;
  5. // The possible channels for an installation. Refer to version_info::Channel.
  6. enum Channel {
  7. kUnknown = 0,
  8. kCanary = 1,
  9. kDev = 2,
  10. kBeta = 3,
  11. kStable = 4,
  12. };