OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2010 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_BROWSER_SYNC_SYNCABLE_AUTOFILL_MIGRATION_H_ | |
6 #define CHROME_BROWSER_SYNC_SYNCABLE_AUTOFILL_MIGRATION_H_ | |
7 #pragma once | |
8 | |
9 namespace syncable { | |
10 enum AutofillMigrationState { | |
11 NOT_DETERMINED, | |
12 NOT_MIGRATED, | |
tim (not reviewing)
2010/12/13 19:24:33
comments for states
lipalani
2010/12/14 21:05:57
Done.
| |
13 MIGRATED, | |
14 INSUFFICIENT_INFO_TO_DETERMINE | |
15 }; | |
16 | |
17 struct AutofillMigrationDebugInfo { | |
18 enum PropertyToSet { | |
19 MIGRATION_TIME, | |
20 BOOKMARK_ADDED, | |
21 ENTRIES_ADDED, | |
22 PROFILES_ADDED | |
23 }; | |
24 int64 autofill_migration_time; | |
25 int bookmarks_added_during_migration; | |
26 int autofill_entries_added_during_migration; | |
27 int autofill_profile_added_during_migration; | |
28 }; | |
29 | |
30 } // namespace syncable | |
31 | |
32 #endif // CHROME_BROWSER_SYNC_SYNCABLE_AUTOFILL_MIGRATION_H_ | |
33 | |
OLD | NEW |