OLD | NEW |
| (Empty) |
1 // Copyright (c) 2011 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 "webkit/forms/form_field_predictions.h" | |
6 | |
7 namespace webkit { | |
8 namespace forms { | |
9 | |
10 FormFieldPredictions::FormFieldPredictions() { | |
11 } | |
12 | |
13 FormFieldPredictions::FormFieldPredictions(const FormFieldPredictions& other) | |
14 : field(other.field), | |
15 signature(other.signature), | |
16 heuristic_type(other.heuristic_type), | |
17 server_type(other.server_type), | |
18 overall_type(other.overall_type) { | |
19 } | |
20 | |
21 FormFieldPredictions::~FormFieldPredictions() { | |
22 } | |
23 | |
24 } // namespace forms | |
25 } // namespace webkit | |
OLD | NEW |