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

Unified Diff: chrome/browser/autofill/phone_field.cc

Issue 6633001: Convert autofill messages to use the new IPC macros (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/autofill/phone_field.cc
===================================================================
--- chrome/browser/autofill/phone_field.cc (revision 77285)
+++ chrome/browser/autofill/phone_field.cc (working copy)
@@ -281,9 +281,9 @@
&parsed_fields[phone_field_grammars_[i].phone_part]))
break;
if (phone_field_grammars_[i].max_size &&
- (!parsed_fields[phone_field_grammars_[i].phone_part]->max_length() ||
+ (!parsed_fields[phone_field_grammars_[i].phone_part]->max_length ||
phone_field_grammars_[i].max_size <
- parsed_fields[phone_field_grammars_[i].phone_part]->max_length())) {
+ parsed_fields[phone_field_grammars_[i].phone_part]->max_length)) {
break;
}
}
« no previous file with comments | « chrome/browser/autofill/personal_data_manager_unittest.cc ('k') | chrome/browser/autofill/select_control_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698