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

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: Comment fix. 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.
93 // TODO(jhawkins): Remove the type column and migrate the
94 // database.
93 // number 95 // number
94 // 96 //
95 // autofill_profiles_trash 97 // autofill_profiles_trash
96 // This table contains guids of "trashed" autofill 98 // This table contains guids of "trashed" autofill
97 // profiles. When a profile is removed its guid is added 99 // profiles. When a profile is removed its guid is added
98 // to this table so that Sync can perform deferred removal. 100 // to this table so that Sync can perform deferred removal.
99 // 101 //
100 // guid The guid string that identifies the trashed profile. 102 // guid The guid string that identifies the trashed profile.
101 // 103 //
102 // credit_cards This table contains credit card data added by the user 104 // 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(); 327 bool InitProfilesTable();
326 bool InitProfileNamesTable(); 328 bool InitProfileNamesTable();
327 bool InitProfileEmailsTable(); 329 bool InitProfileEmailsTable();
328 bool InitProfilePhonesTable(); 330 bool InitProfilePhonesTable();
329 bool InitProfileTrashTable(); 331 bool InitProfileTrashTable();
330 332
331 DISALLOW_COPY_AND_ASSIGN(AutofillTable); 333 DISALLOW_COPY_AND_ASSIGN(AutofillTable);
332 }; 334 };
333 335
334 #endif // CHROME_BROWSER_WEBDATA_AUTOFILL_TABLE_H_ 336 #endif // CHROME_BROWSER_WEBDATA_AUTOFILL_TABLE_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/webui/options/autofill_options_handler.cc ('k') | chrome/browser/webdata/autofill_table.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698