// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
module extensions.mojom;
// Mojo struct to represent extensions::ActivationSequence that is an unique
// identifier for an extension's activation->deactivation span. As it is an
// optional field in ExtensionLoadedParams, we use an struct to represent it
// (primitive numeric types are not nullable).
struct ActivationSequence {
int32 value;
};