Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 #include "chrome/browser/autocomplete_history_manager.h" | 5 #include "chrome/browser/autocomplete_history_manager.h" |
| 6 | 6 |
| 7 #include <vector> | 7 #include <vector> |
| 8 | 8 |
| 9 #include "base/string16.h" | 9 #include "base/string16.h" |
| 10 #include "base/string_number_conversions.h" | 10 #include "base/string_number_conversions.h" |
| 11 #include "base/utf_string_conversions.h" | 11 #include "base/utf_string_conversions.h" |
| 12 #include "chrome/browser/autofill/autofill_external_delegate.h" | 12 #include "chrome/browser/autofill/autofill_external_delegate.h" |
| 13 #include "chrome/browser/autofill/credit_card.h" | 13 #include "chrome/browser/autofill/credit_card.h" |
| 14 #include "chrome/browser/prefs/pref_service.h" | 14 #include "chrome/browser/prefs/pref_service.h" |
| 15 #include "chrome/browser/profiles/profile.h" | 15 #include "chrome/browser/profiles/profile.h" |
| 16 #include "chrome/common/autofill_messages.h" | 16 #include "chrome/common/autofill_messages.h" |
| 17 #include "chrome/common/pref_names.h" | 17 #include "chrome/common/pref_names.h" |
| 18 #include "content/browser/renderer_host/render_view_host.h" | 18 #include "content/browser/renderer_host/render_view_host.h" |
| 19 #include "content/browser/tab_contents/tab_contents.h" | 19 #include "content/browser/tab_contents/tab_contents.h" |
| 20 #include "webkit/glue/form_data.h" | 20 #include "webkit/glue/form_data.h" |
| 21 | 21 |
| 22 using base::StringPiece16; | |
| 22 using webkit_glue::FormData; | 23 using webkit_glue::FormData; |
| 23 using webkit_glue::FormField; | 24 using webkit_glue::FormField; |
| 24 | 25 |
| 25 namespace { | 26 namespace { |
| 26 | 27 |
| 27 // Limit on the number of suggestions to appear in the pop-up menu under an | 28 // Limit on the number of suggestions to appear in the pop-up menu under an |
| 28 // text input element in a form. | 29 // text input element in a form. |
| 29 const int kMaxAutocompleteMenuItems = 6; | 30 const int kMaxAutocompleteMenuItems = 6; |
| 30 | 31 |
| 31 // The separator characters for SSNs. | 32 // The separator characters for SSNs. |
| (...skipping 24 matching lines...) Expand all Loading... | |
| 56 // | 57 // |
| 57 // References for historic practices: | 58 // References for historic practices: |
| 58 // http://www.socialsecurity.gov/history/ssn/geocard.html | 59 // http://www.socialsecurity.gov/history/ssn/geocard.html |
| 59 // http://www.socialsecurity.gov/employer/stateweb.htm | 60 // http://www.socialsecurity.gov/employer/stateweb.htm |
| 60 // http://www.socialsecurity.gov/employer/ssnvhighgroup.htm | 61 // http://www.socialsecurity.gov/employer/ssnvhighgroup.htm |
| 61 | 62 |
| 62 if (number_string.length() != 9 || !IsStringASCII(number_string)) | 63 if (number_string.length() != 9 || !IsStringASCII(number_string)) |
| 63 return false; | 64 return false; |
| 64 | 65 |
| 65 int area; | 66 int area; |
| 66 if (!base::StringToInt(number_string.begin(), | 67 if (!base::StringToInt(StringPiece16(number_string.begin(), |
| 67 number_string.begin() + 3, | 68 number_string.begin() + 3), |
| 68 &area)) | 69 &area)) |
|
erikwright (departed)
2011/12/14 05:29:57
Sorry, missed this one last time too.
Can you fix
| |
| 69 return false; | 70 return false; |
| 70 if (area < 1 || | 71 if (area < 1 || |
| 71 area == 666 || | 72 area == 666 || |
| 72 area >= 900) | 73 area >= 900) |
| 73 return false; | 74 return false; |
| 74 | 75 |
| 75 int group; | 76 int group; |
| 76 if (!base::StringToInt(number_string.begin() + 3, | 77 if (!base::StringToInt(StringPiece16(number_string.begin() + 3, |
| 77 number_string.begin() + 5, | 78 number_string.begin() + 5), |
| 78 &group) || group == 0) | 79 &group) |
| 80 || group == 0) | |
| 79 return false; | 81 return false; |
| 80 | 82 |
| 81 int serial; | 83 int serial; |
| 82 if (!base::StringToInt(number_string.begin() + 5, | 84 if (!base::StringToInt(StringPiece16(number_string.begin() + 5, |
| 83 number_string.begin() + 9, | 85 number_string.begin() + 9), |
| 84 &serial) || serial == 0) | 86 &serial) |
| 87 || serial == 0) | |
| 85 return false; | 88 return false; |
| 86 | 89 |
| 87 return true; | 90 return true; |
| 88 } | 91 } |
| 89 | 92 |
| 90 bool IsTextField(const FormField& field) { | 93 bool IsTextField(const FormField& field) { |
| 91 return | 94 return |
| 92 field.form_control_type == ASCIIToUTF16("text") || | 95 field.form_control_type == ASCIIToUTF16("text") || |
| 93 field.form_control_type == ASCIIToUTF16("search") || | 96 field.form_control_type == ASCIIToUTF16("search") || |
| 94 field.form_control_type == ASCIIToUTF16("tel") || | 97 field.form_control_type == ASCIIToUTF16("tel") || |
| (...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 284 autofill_icons_, | 287 autofill_icons_, |
| 285 autofill_unique_ids_)); | 288 autofill_unique_ids_)); |
| 286 } | 289 } |
| 287 | 290 |
| 288 query_id_ = 0; | 291 query_id_ = 0; |
| 289 autofill_values_.clear(); | 292 autofill_values_.clear(); |
| 290 autofill_labels_.clear(); | 293 autofill_labels_.clear(); |
| 291 autofill_icons_.clear(); | 294 autofill_icons_.clear(); |
| 292 autofill_unique_ids_.clear(); | 295 autofill_unique_ids_.clear(); |
| 293 } | 296 } |
| OLD | NEW |