summaryrefslogtreecommitdiffstats
path: root/chromium/components/autofill/core/common/form_data_predictions.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/components/autofill/core/common/form_data_predictions.cc')
-rw-r--r--chromium/components/autofill/core/common/form_data_predictions.cc35
1 files changed, 0 insertions, 35 deletions
diff --git a/chromium/components/autofill/core/common/form_data_predictions.cc b/chromium/components/autofill/core/common/form_data_predictions.cc
deleted file mode 100644
index 8375c3066c9..00000000000
--- a/chromium/components/autofill/core/common/form_data_predictions.cc
+++ /dev/null
@@ -1,35 +0,0 @@
-// 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),
- experiment_id(other.experiment_id),
- fields(other.fields) {
-}
-
-FormDataPredictions::~FormDataPredictions() {
-}
-
-bool FormDataPredictions::operator==(
- const FormDataPredictions& predictions) const {
- return (data == predictions.data &&
- signature == predictions.signature &&
- experiment_id == predictions.experiment_id &&
- fields == predictions.fields);
-}
-
-bool FormDataPredictions::operator!=(
- const FormDataPredictions& predictions) const {
- return !operator==(predictions);
-}
-
-} // namespace autofill