| 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/forms/form_data.h" | 20 #include "webkit/forms/form_data.h" |
| 21 | 21 |
| 22 using base::StringPiece16; | |
| 23 using webkit::forms::FormData; | 22 using webkit::forms::FormData; |
| 24 using webkit::forms::FormField; | 23 using webkit::forms::FormField; |
| 25 | 24 |
| 26 namespace { | 25 namespace { |
| 27 | 26 |
| 28 // Limit on the number of suggestions to appear in the pop-up menu under an | 27 // Limit on the number of suggestions to appear in the pop-up menu under an |
| 29 // text input element in a form. | 28 // text input element in a form. |
| 30 const int kMaxAutocompleteMenuItems = 6; | 29 const int kMaxAutocompleteMenuItems = 6; |
| 31 | 30 |
| 32 // The separator characters for SSNs. | 31 // The separator characters for SSNs. |
| (...skipping 24 matching lines...) Expand all Loading... |
| 57 // | 56 // |
| 58 // References for historic practices: | 57 // References for historic practices: |
| 59 // http://www.socialsecurity.gov/history/ssn/geocard.html | 58 // http://www.socialsecurity.gov/history/ssn/geocard.html |
| 60 // http://www.socialsecurity.gov/employer/stateweb.htm | 59 // http://www.socialsecurity.gov/employer/stateweb.htm |
| 61 // http://www.socialsecurity.gov/employer/ssnvhighgroup.htm | 60 // http://www.socialsecurity.gov/employer/ssnvhighgroup.htm |
| 62 | 61 |
| 63 if (number_string.length() != 9 || !IsStringASCII(number_string)) | 62 if (number_string.length() != 9 || !IsStringASCII(number_string)) |
| 64 return false; | 63 return false; |
| 65 | 64 |
| 66 int area; | 65 int area; |
| 67 if (!base::StringToInt(StringPiece16(number_string.begin(), | 66 if (!base::StringToInt(number_string.begin(), |
| 68 number_string.begin() + 3), | 67 number_string.begin() + 3, |
| 69 &area)) { | 68 &area)) |
| 70 return false; | 69 return false; |
| 71 } | |
| 72 if (area < 1 || | 70 if (area < 1 || |
| 73 area == 666 || | 71 area == 666 || |
| 74 area >= 900) { | 72 area >= 900) |
| 75 return false; | 73 return false; |
| 76 } | |
| 77 | 74 |
| 78 int group; | 75 int group; |
| 79 if (!base::StringToInt(StringPiece16(number_string.begin() + 3, | 76 if (!base::StringToInt(number_string.begin() + 3, |
| 80 number_string.begin() + 5), | 77 number_string.begin() + 5, |
| 81 &group) | 78 &group) || group == 0) |
| 82 || group == 0) { | |
| 83 return false; | 79 return false; |
| 84 } | |
| 85 | 80 |
| 86 int serial; | 81 int serial; |
| 87 if (!base::StringToInt(StringPiece16(number_string.begin() + 5, | 82 if (!base::StringToInt(number_string.begin() + 5, |
| 88 number_string.begin() + 9), | 83 number_string.begin() + 9, |
| 89 &serial) | 84 &serial) || serial == 0) |
| 90 || serial == 0) { | |
| 91 return false; | 85 return false; |
| 92 } | |
| 93 | 86 |
| 94 return true; | 87 return true; |
| 95 } | 88 } |
| 96 | 89 |
| 97 bool IsTextField(const FormField& field) { | 90 bool IsTextField(const FormField& field) { |
| 98 return | 91 return |
| 99 field.form_control_type == ASCIIToUTF16("text") || | 92 field.form_control_type == ASCIIToUTF16("text") || |
| 100 field.form_control_type == ASCIIToUTF16("search") || | 93 field.form_control_type == ASCIIToUTF16("search") || |
| 101 field.form_control_type == ASCIIToUTF16("tel") || | 94 field.form_control_type == ASCIIToUTF16("tel") || |
| 102 field.form_control_type == ASCIIToUTF16("url") || | 95 field.form_control_type == ASCIIToUTF16("url") || |
| (...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 291 autofill_icons_, | 284 autofill_icons_, |
| 292 autofill_unique_ids_)); | 285 autofill_unique_ids_)); |
| 293 } | 286 } |
| 294 | 287 |
| 295 query_id_ = 0; | 288 query_id_ = 0; |
| 296 autofill_values_.clear(); | 289 autofill_values_.clear(); |
| 297 autofill_labels_.clear(); | 290 autofill_labels_.clear(); |
| 298 autofill_icons_.clear(); | 291 autofill_icons_.clear(); |
| 299 autofill_unique_ids_.clear(); | 292 autofill_unique_ids_.clear(); |
| 300 } | 293 } |
| OLD | NEW |