blob: bcd559906e20d93a5006dd8c05ac3800cc1a315c [file] [log] [blame]
// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_AUTOFILL_CORE_COMMON_ALIASES_H_
#define COMPONENTS_AUTOFILL_CORE_COMMON_ALIASES_H_
#include "base/types/strong_alias.h"
namespace autofill {
// TODO(crbug.com/1326518): Use strong aliases for other primitives in mojom
// files.
// Specifies whether a form input element was clicked.
using FormElementWasClicked =
base::StrongAlias<struct FormElementWasClickedTag, bool>;
} // namespace autofill
#endif // COMPONENTS_AUTOFILL_CORE_COMMON_ALIASES_H_