form_data_predictions.cc revision 7d4cd473f85ac64c3747c96c277f9e506a0d2246
1// Copyright 2013 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "components/autofill/core/common/form_data_predictions.h"
6
7namespace autofill {
8
9FormDataPredictions::FormDataPredictions() {
10}
11
12FormDataPredictions::FormDataPredictions(const FormDataPredictions& other)
13    : data(other.data),
14      signature(other.signature),
15      experiment_id(other.experiment_id),
16      fields(other.fields) {
17}
18
19FormDataPredictions::~FormDataPredictions() {
20}
21
22}  // namespace autofill
23