// Copyright 2018 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_FIELD_DATA_MANAGER_H_ #define COMPONENTS_AUTOFILL_CORE_COMMON_FIELD_DATA_MANAGER_H_ #include <map> #include <optional> #include <string> #include "components/autofill/core/common/form_field_data.h" #include "components/autofill/core/common/unique_ids.h" namespace autofill { // This class provides the methods to update and get the field data (the pair // of user typed value and field properties mask). class FieldDataManager : public base::RefCounted<FieldDataManager> { … }; } // namespace autofill #endif // COMPONENTS_AUTOFILL_CORE_COMMON_FIELD_DATA_MANAGER_H_