| Index: content/public/common/form_field_data.cc
|
| diff --git a/content/public/common/form_field_data.cc b/content/public/common/form_field_data.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..1e00a68cecd25c93d0dc395084cec0afd4fe904b
|
| --- /dev/null
|
| +++ b/content/public/common/form_field_data.cc
|
| @@ -0,0 +1,15 @@
|
| +// Copyright (c) 2016 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 "content/public/common/form_field_data.h"
|
| +
|
| +namespace content {
|
| +
|
| +FormFieldData::FormFieldData() : text_input_type(ui::TEXT_INPUT_TYPE_NONE) {}
|
| +
|
| +FormFieldData::FormFieldData(const FormFieldData& other) = default;
|
| +
|
| +FormFieldData::~FormFieldData() = default;
|
| +
|
| +} // namespace content
|
|
|