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

Side by Side Diff: chrome/browser/autofill/address.cc

Issue 517054: Remove all uses of EmptyString16(), EmptyWString(), and EmptyGURL(), and thei... (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 | « base/string_util.h ('k') | chrome/browser/autofill/contact_info.cc » ('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 #include "chrome/browser/autofill/address.h" 5 #include "chrome/browser/autofill/address.h"
6 6
7 #include "base/basictypes.h" 7 #include "base/basictypes.h"
8 #include "base/string_util.h" 8 #include "base/string_util.h"
9 #include "chrome/browser/autofill/autofill_type.h" 9 #include "chrome/browser/autofill/autofill_type.h"
10 #include "chrome/browser/autofill/field_types.h" 10 #include "chrome/browser/autofill/field_types.h"
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 82
83 if (field_type == GetStateType()) 83 if (field_type == GetStateType())
84 return state(); 84 return state();
85 85
86 if (field_type == GetZipCodeType()) 86 if (field_type == GetZipCodeType())
87 return zip_code(); 87 return zip_code();
88 88
89 if (field_type == GetCountryType()) 89 if (field_type == GetCountryType())
90 return country(); 90 return country();
91 91
92 return EmptyString16(); 92 return string16();
93 } 93 }
94 94
95 void Address::SetInfo(const AutoFillType& type, const string16& value) { 95 void Address::SetInfo(const AutoFillType& type, const string16& value) {
96 FieldTypeSubGroup subgroup = type.subgroup(); 96 FieldTypeSubGroup subgroup = type.subgroup();
97 if (subgroup == AutoFillType::ADDRESS_LINE1) 97 if (subgroup == AutoFillType::ADDRESS_LINE1)
98 set_line1(value); 98 set_line1(value);
99 else if (subgroup == AutoFillType::ADDRESS_LINE2) 99 else if (subgroup == AutoFillType::ADDRESS_LINE2)
100 set_line2(value); 100 set_line2(value);
101 else if (subgroup == AutoFillType::ADDRESS_APPT_NUM) 101 else if (subgroup == AutoFillType::ADDRESS_APPT_NUM)
102 set_apt_num(value); 102 set_apt_num(value);
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
256 bool Address::IsWordInLine(const string16& word, 256 bool Address::IsWordInLine(const string16& word,
257 const LineTokens& line_tokens) const { 257 const LineTokens& line_tokens) const {
258 LineTokens::const_iterator iter; 258 LineTokens::const_iterator iter;
259 for (iter = line_tokens.begin(); iter != line_tokens.end(); ++iter) { 259 for (iter = line_tokens.begin(); iter != line_tokens.end(); ++iter) {
260 if (word == *iter) 260 if (word == *iter)
261 return true; 261 return true;
262 } 262 }
263 263
264 return false; 264 return false;
265 } 265 }
OLDNEW
« no previous file with comments | « base/string_util.h ('k') | chrome/browser/autofill/contact_info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698