blob: c5c82e080cad51707949cef2d9f00a79dc1b4d3a [file] [log] [blame]
// Copyright 2015 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/password_store_change.h"
namespace password_manager {
std::ostream& operator<<(std::ostream& os,
const PasswordStoreChange& password_store_change) {
return os << "type: " << password_store_change.type()
<< ", password form: " << password_store_change.form();
}
} // namespace password_manager