Chromium Code Reviews| Index: components/autofill/core/browser/autofill_data_util.h |
| diff --git a/components/autofill/core/browser/autofill_data_util.h b/components/autofill/core/browser/autofill_data_util.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..35688ee6a7bca0cae9dcb52fc43b3e1235df7dae |
| --- /dev/null |
| +++ b/components/autofill/core/browser/autofill_data_util.h |
| @@ -0,0 +1,26 @@ |
| +// Copyright 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. |
| + |
| +#ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_DATA_UTIL_H_ |
| +#define COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_DATA_UTIL_H_ |
| + |
| +#include "base/strings/string16.h" |
| + |
| +namespace autofill { |
| +namespace data_util { |
| + |
| +struct NameParts { |
| + base::string16 given; |
| + base::string16 middle; |
| + base::string16 family; |
| +}; |
| + |
| +// TODO(crbug.com/586510): Investigate the use of app_locale to do better name |
| +// splitting. |
|
Mathieu
2016/02/12 20:53:30
documentation?
sebsg
2016/02/24 18:49:43
Done.
|
| +NameParts SplitName(const base::string16& name); |
| + |
| +} // namespace data_util |
| +} // namespace autofill |
| + |
| +#endif // COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_DATA_UTIL_H_ |