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

Side by Side Diff: chrome/browser/sync/syncable/autofill_migration.h

Issue 5159001: Rest of the autofill work. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Couple of lint errors sneaked into my previous patch. This is clean of lint errors. Created 10 years 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 | Annotate | Revision Log
OLDNEW
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698