Chromium Code Reviews| Index: components/autofill/core/common/password_form_generation_data.cc |
| diff --git a/components/autofill/core/common/password_form_generation_data.cc b/components/autofill/core/common/password_form_generation_data.cc |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..0d018b4fb72729daa81a0555b930c918526fd25e |
| --- /dev/null |
| +++ b/components/autofill/core/common/password_form_generation_data.cc |
| @@ -0,0 +1,21 @@ |
| +// Copyright (c) 2017 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/autofill/core/common/password_form_generation_data.h" |
| + |
| +namespace autofill { |
| + |
| +PasswordFormGenerationData::PasswordFormGenerationData() = default; |
| + |
| +PasswordFormGenerationData::PasswordFormGenerationData( |
| + FormSignature form_signature, |
| + FieldSignature field_signature) |
| + : form_signature(form_signature), field_signature(field_signature){}; |
|
dcheng
2017/03/07 21:42:26
No ; here (this also confuses clang-format)
kolos1
2017/03/08 07:43:50
Done.
|
| + |
| +PasswordFormGenerationData::PasswordFormGenerationData( |
| + const PasswordFormGenerationData& other) = default; |
| + |
| +PasswordFormGenerationData::~PasswordFormGenerationData() = default; |
| + |
| +} // namespace autofill |