summaryrefslogtreecommitdiffstats
path: root/webkit/glue/form_data_predictions.h
diff options
context:
space:
mode:
authorisherman@chromium.org <isherman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-06-20 20:21:42 +0000
committerisherman@chromium.org <isherman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-06-20 20:21:42 +0000
commit679782384a0cb99c6a496bf0acbb7fee246ec5be (patch)
treee21c8328c78ebba1851f5b104073d94e7429f4e9 /webkit/glue/form_data_predictions.h
parent58a1a3b622f6cdc7e62aa5106164d6fe45f9891d (diff)
downloadchromium_src-679782384a0cb99c6a496bf0acbb7fee246ec5be.zip
chromium_src-679782384a0cb99c6a496bf0acbb7fee246ec5be.tar.gz
chromium_src-679782384a0cb99c6a496bf0acbb7fee246ec5be.tar.bz2
Revert 89716 - Add a debugging flag to annotate web forms with their Autofill field type predictions.
BUG=none TEST=none Review URL: http://codereview.chromium.org/7187029 TBR=isherman@chromium.org Review URL: http://codereview.chromium.org/7204037 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@89720 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/form_data_predictions.h')
-rw-r--r--webkit/glue/form_data_predictions.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/webkit/glue/form_data_predictions.h b/webkit/glue/form_data_predictions.h
deleted file mode 100644
index 7661ff9..0000000
--- a/webkit/glue/form_data_predictions.h
+++ /dev/null
@@ -1,34 +0,0 @@
-// Copyright (c) 2011 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.
-
-#ifndef WEBKIT_GLUE_FORM_DATA_PREDICTIONS_H__
-#define WEBKIT_GLUE_FORM_DATA_PREDICTIONS_H__
-
-#include <string>
-#include <vector>
-
-#include "webkit/glue/form_data.h"
-#include "webkit/glue/form_field_predictions.h"
-
-namespace webkit_glue {
-
-// Holds information about a form to be filled and/or submitted.
-struct FormDataPredictions {
- // Data for this form.
- FormData data;
- // The form signature for communication with the crowdsourcing server.
- std::string signature;
- // The experiment id for the server predictions.
- std::string experiment_id;
- // The form fields and their predicted field types.
- std::vector<FormFieldPredictions> fields;
-
- FormDataPredictions();
- FormDataPredictions(const FormDataPredictions& other);
- ~FormDataPredictions();
-};
-
-} // namespace webkit_glue
-
-#endif // WEBKIT_GLUE_FORM_DATA_PREDICTIONS_H__