// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "components/autofill/content/renderer/prefilled_values_detector.h" #include "base/containers/fixed_flat_set.h" #include "base/strings/string_util.h" namespace autofill { namespace { constexpr auto kKnownUsernamePlaceholders = …; } // namespace base::span<const std::string_view> KnownUsernamePlaceholders() { … } bool PossiblePrefilledUsernameValue(const std::string& username_value, const std::string& possible_email_domain) { … } } // namespace autofill