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

Side by Side Diff: chrome/browser/webdata/autofill_table.h

Issue 7892048: Autofill: Remove fax number completely. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_WEBDATA_AUTOFILL_TABLE_H_ 5 #ifndef CHROME_BROWSER_WEBDATA_AUTOFILL_TABLE_H_
6 #define CHROME_BROWSER_WEBDATA_AUTOFILL_TABLE_H_ 6 #define CHROME_BROWSER_WEBDATA_AUTOFILL_TABLE_H_
7 #pragma once 7 #pragma once
8 8
9 #include "base/gtest_prod_util.h" 9 #include "base/gtest_prod_util.h"
10 #include "base/string16.h" 10 #include "base/string16.h"
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 // 80 //
81 // guid The guid string that identifies the profile to which 81 // guid The guid string that identifies the profile to which
82 // the email belongs. 82 // the email belongs.
83 // email 83 // email
84 // 84 //
85 // autofill_profile_phones 85 // autofill_profile_phones
86 // This table contains the multi-valued phone fields 86 // This table contains the multi-valued phone fields
87 // associated with a profile. 87 // associated with a profile.
88 // 88 //
89 // guid The guid string that identifies the profile to which 89 // guid The guid string that identifies the profile to which
90 // the phone or fax number belongs. 90 // the phone number belongs.
91 // type An integer constant designating either phone or fax type 91 // type An integer constant designating either phone type of the
92 // of the number. 92 // number.
Ilya Sherman 2011/09/15 03:47:08 I don't think we want to have a 'type' at all anym
James Hawkins 2011/09/16 03:23:28 This can be done in a followup CL (which was my pl
Ilya Sherman 2011/09/16 03:57:09 Ok, but in that case please add a TODO or file a b
James Hawkins 2011/09/16 04:23:21 Done.
93 // number 93 // number
94 // 94 //
95 // autofill_profiles_trash 95 // autofill_profiles_trash
96 // This table contains guids of "trashed" autofill 96 // This table contains guids of "trashed" autofill
97 // profiles. When a profile is removed its guid is added 97 // profiles. When a profile is removed its guid is added
98 // to this table so that Sync can perform deferred removal. 98 // to this table so that Sync can perform deferred removal.
99 // 99 //
100 // guid The guid string that identifies the trashed profile. 100 // guid The guid string that identifies the trashed profile.
101 // 101 //
102 // credit_cards This table contains credit card data added by the user 102 // credit_cards This table contains credit card data added by the user
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after
325 bool InitProfilesTable(); 325 bool InitProfilesTable();
326 bool InitProfileNamesTable(); 326 bool InitProfileNamesTable();
327 bool InitProfileEmailsTable(); 327 bool InitProfileEmailsTable();
328 bool InitProfilePhonesTable(); 328 bool InitProfilePhonesTable();
329 bool InitProfileTrashTable(); 329 bool InitProfileTrashTable();
330 330
331 DISALLOW_COPY_AND_ASSIGN(AutofillTable); 331 DISALLOW_COPY_AND_ASSIGN(AutofillTable);
332 }; 332 };
333 333
334 #endif // CHROME_BROWSER_WEBDATA_AUTOFILL_TABLE_H_ 334 #endif // CHROME_BROWSER_WEBDATA_AUTOFILL_TABLE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698