blob: 3eda89dee9aaf32a35c12e52575b3a17202a319d [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/password_manager/core/browser/credentials_cleaner.h"
#include "base/stl_util.h"
#include "components/autofill/core/common/password_form.h"
#include "url/gurl.h"
namespace password_manager {
// static
std::vector<std::unique_ptr<autofill::PasswordForm>>
CredentialsCleaner::RemoveNonHTTPOrHTTPSForms(
std::vector<std::unique_ptr<autofill::PasswordForm>> forms) {
base::EraseIf(forms, [](const auto& form) {
return !GURL(form->signon_realm).SchemeIsHTTPOrHTTPS();
});
return forms;
}
} // namespace password_manager