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

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

Issue 517066: Implement AutoFillProfile, a collection of form groups that stores profile in... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 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
« no previous file with comments | « chrome/browser/autofill/home_address.h ('k') | chrome/browser/autofill/phone_number.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_HOME_PHONE_NUMBER_H_ 5 #ifndef CHROME_BROWSER_AUTOFILL_HOME_PHONE_NUMBER_H_
6 #define CHROME_BROWSER_AUTOFILL_HOME_PHONE_NUMBER_H_ 6 #define CHROME_BROWSER_AUTOFILL_HOME_PHONE_NUMBER_H_
7 7
8 #include "chrome/browser/autofill/phone_number.h" 8 #include "chrome/browser/autofill/phone_number.h"
9 9
10 class FormGroup; 10 class FormGroup;
11 11
12 class HomePhoneNumber : public PhoneNumber { 12 class HomePhoneNumber : public PhoneNumber {
13 public: 13 public:
14 HomePhoneNumber() {}
14 virtual FormGroup* Clone() const { return new HomePhoneNumber(*this); } 15 virtual FormGroup* Clone() const { return new HomePhoneNumber(*this); }
15 16
16 protected: 17 protected:
17 virtual AutoFillFieldType GetNumberType() const { 18 virtual AutoFillFieldType GetNumberType() const {
18 return PHONE_HOME_NUMBER; 19 return PHONE_HOME_NUMBER;
19 } 20 }
20 21
21 virtual AutoFillFieldType GetCityCodeType() const { 22 virtual AutoFillFieldType GetCityCodeType() const {
22 return PHONE_HOME_CITY_CODE; 23 return PHONE_HOME_CITY_CODE;
23 } 24 }
24 25
25 virtual AutoFillFieldType GetCountryCodeType() const { 26 virtual AutoFillFieldType GetCountryCodeType() const {
26 return PHONE_HOME_COUNTRY_CODE; 27 return PHONE_HOME_COUNTRY_CODE;
27 } 28 }
28 29
29 virtual AutoFillFieldType GetCityAndNumberType() const { 30 virtual AutoFillFieldType GetCityAndNumberType() const {
30 return PHONE_HOME_CITY_AND_NUMBER; 31 return PHONE_HOME_CITY_AND_NUMBER;
31 } 32 }
32 33
33 virtual AutoFillFieldType GetWholeNumberType() const { 34 virtual AutoFillFieldType GetWholeNumberType() const {
34 return PHONE_HOME_WHOLE_NUMBER; 35 return PHONE_HOME_WHOLE_NUMBER;
35 } 36 }
36 37
37 private: 38 private:
38 explicit HomePhoneNumber(const HomePhoneNumber& phone) : PhoneNumber(phone) {} 39 explicit HomePhoneNumber(const HomePhoneNumber& phone) : PhoneNumber(phone) {}
39 void operator=(const HomePhoneNumber& phone); 40 void operator=(const HomePhoneNumber& phone);
40 }; 41 };
41 42
42 #endif // CHROME_BROWSER_AUTOFILL_HOME_PHONE_NUMBER_H_ 43 #endif // CHROME_BROWSER_AUTOFILL_HOME_PHONE_NUMBER_H_
OLDNEW
« no previous file with comments | « chrome/browser/autofill/home_address.h ('k') | chrome/browser/autofill/phone_number.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698