Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(384)

Side by Side Diff: chrome/common/importer/importer_autofill_form_data_entry.h

Issue 480953002: Implement "Autofill form data" import for Firefox (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Review feedback (simplify Read method) Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/chrome_common.gypi ('k') | chrome/common/importer/importer_autofill_form_data_entry.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2014 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 #ifndef CHROME_COMMON_IMPORTER_IMPORTER_AUTOFILL_FORM_DATA_ENTRY_H_
6 #define CHROME_COMMON_IMPORTER_IMPORTER_AUTOFILL_FORM_DATA_ENTRY_H_
7
8 #include "base/strings/string16.h"
9 #include "base/time/time.h"
10
11 // Used as the target for importing form history from other browsers' profiles
12 // in the utility process.
13 struct ImporterAutofillFormDataEntry {
14 ImporterAutofillFormDataEntry();
15 ~ImporterAutofillFormDataEntry();
16
17 // Name of input element.
18 base::string16 name;
19
20 // Value of input element.
21 base::string16 value;
22
23 // Number of times this name-value pair has been used.
24 int times_used;
25
26 // The date of the first time when this name-value pair was used.
27 base::Time first_used;
28
29 // The date of the last time when this name-value pair was used.
30 base::Time last_used;
31 };
32
33 #endif // CHROME_COMMON_IMPORTER_IMPORTER_AUTOFILL_FORM_DATA_ENTRY_H_
OLDNEW
« no previous file with comments | « chrome/chrome_common.gypi ('k') | chrome/common/importer/importer_autofill_form_data_entry.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698