chromium/components/autofill/content/renderer/suggestion_properties.cc

// Copyright 2023 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/suggestion_properties.h"

#include "base/notreached.h"
#include "components/autofill/core/common/aliases.h"

WebFormControlElement;

namespace autofill {

// The following functions define properties of AutofillSuggestions based
// on the trigger source.
bool ShouldAutofillOnEmptyValues(
    AutofillSuggestionTriggerSource trigger_source) {}

bool ShouldAutofillOnLongValues(
    AutofillSuggestionTriggerSource trigger_source) {}

bool RequiresCaretAtEnd(AutofillSuggestionTriggerSource trigger_source) {}

bool ShouldShowFullSuggestionListForPasswordManager(
    AutofillSuggestionTriggerSource trigger_source,
    const WebFormControlElement& element) {}

}  // namespace autofill