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

Side by Side Diff: chrome/browser/autofill/autofill_manager.h

Issue 6033010: Support autocompletion for HTMl5 tags:"email", "month" and "tel". (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Fix typo, format errors. Created 9 years, 11 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) 2010 The Chromium Authors. All rights reserved. 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 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_AUTOFILL_AUTOFILL_MANAGER_H_ 5 #ifndef CHROME_BROWSER_AUTOFILL_AUTOFILL_MANAGER_H_
6 #define CHROME_BROWSER_AUTOFILL_AUTOFILL_MANAGER_H_ 6 #define CHROME_BROWSER_AUTOFILL_AUTOFILL_MANAGER_H_
7 #pragma once 7 #pragma once
8 8
9 #include <list> 9 #include <list>
10 #include <string> 10 #include <string>
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 // The InfoBar that asks for permission to store credit card information. 199 // The InfoBar that asks for permission to store credit card information.
200 // Deletes itself when closed. 200 // Deletes itself when closed.
201 AutoFillCCInfoBarDelegate* cc_infobar_; 201 AutoFillCCInfoBarDelegate* cc_infobar_;
202 202
203 // GUID to ID mapping. We keep two maps to convert back and forth. 203 // GUID to ID mapping. We keep two maps to convert back and forth.
204 std::map<std::string, int> guid_id_map_; 204 std::map<std::string, int> guid_id_map_;
205 std::map<int, std::string> id_guid_map_; 205 std::map<int, std::string> id_guid_map_;
206 206
207 friend class FormStructureBrowserTest; 207 friend class FormStructureBrowserTest;
208 FRIEND_TEST_ALL_PREFIXES(AutoFillManagerTest, FillCreditCardForm); 208 FRIEND_TEST_ALL_PREFIXES(AutoFillManagerTest, FillCreditCardForm);
209 FRIEND_TEST_ALL_PREFIXES(AutoFillManagerTest,
210 FillCreditCardFormWithMonthInput);
209 FRIEND_TEST_ALL_PREFIXES(AutoFillManagerTest, FillAddressForm); 211 FRIEND_TEST_ALL_PREFIXES(AutoFillManagerTest, FillAddressForm);
210 FRIEND_TEST_ALL_PREFIXES(AutoFillManagerTest, FillAddressAndCreditCardForm); 212 FRIEND_TEST_ALL_PREFIXES(AutoFillManagerTest, FillAddressAndCreditCardForm);
211 FRIEND_TEST_ALL_PREFIXES(AutoFillManagerTest, FillAutoFilledForm); 213 FRIEND_TEST_ALL_PREFIXES(AutoFillManagerTest, FillAutoFilledForm);
212 FRIEND_TEST_ALL_PREFIXES(AutoFillManagerTest, FillPhoneNumber); 214 FRIEND_TEST_ALL_PREFIXES(AutoFillManagerTest, FillPhoneNumber);
213 FRIEND_TEST_ALL_PREFIXES(AutoFillManagerTest, FormChangesRemoveField); 215 FRIEND_TEST_ALL_PREFIXES(AutoFillManagerTest, FormChangesRemoveField);
214 FRIEND_TEST_ALL_PREFIXES(AutoFillManagerTest, FormChangesAddField); 216 FRIEND_TEST_ALL_PREFIXES(AutoFillManagerTest, FormChangesAddField);
215 217
216 DISALLOW_COPY_AND_ASSIGN(AutoFillManager); 218 DISALLOW_COPY_AND_ASSIGN(AutoFillManager);
217 }; 219 };
218 220
219 #endif // CHROME_BROWSER_AUTOFILL_AUTOFILL_MANAGER_H_ 221 #endif // CHROME_BROWSER_AUTOFILL_AUTOFILL_MANAGER_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/autofill/autofill_manager.cc » ('j') | chrome/browser/autofill/autofill_manager.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698