// 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_BROWSER_RANDOMIZED_ENCODER_H_ #define COMPONENTS_AUTOFILL_CORE_BROWSER_RANDOMIZED_ENCODER_H_ #include <memory> #include <string> #include <string_view> #include "base/memory/raw_ptr.h" #include "components/autofill/core/browser/proto/server.pb.h" #include "components/autofill/core/common/signatures.h" class PrefService; namespace autofill { // Encodes string values using the differential-privacy scheme as described // in go/autofill-metadata-upload (Google internal link). class RandomizedEncoder { … }; } // namespace autofill #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_RANDOMIZED_ENCODER_H_