blob: 9c71a970b9805f436e47f500c2154a55d38c1494 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
// Copyright 2013 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/form_data_predictions.h"
namespace autofill {
FormDataPredictions::FormDataPredictions() {
}
FormDataPredictions::FormDataPredictions(const FormDataPredictions& other)
: data(other.data),
signature(other.signature),
fields(other.fields) {
}
FormDataPredictions::~FormDataPredictions() {
}
bool FormDataPredictions::operator==(
const FormDataPredictions& predictions) const {
return (data.SameFormAs(predictions.data) &&
signature == predictions.signature &&
fields == predictions.fields);
}
bool FormDataPredictions::operator!=(
const FormDataPredictions& predictions) const {
return !operator==(predictions);
}
} // namespace autofill
|