OLD | NEW |
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_field.h" | 5 #include "chrome/browser/autofill/address_field.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "base/string16.h" | 8 #include "base/string16.h" |
9 #include "base/string_util.h" | 9 #include "base/string_util.h" |
10 #include "chrome/browser/autofill/autofill_field.h" | 10 #include "chrome/browser/autofill/autofill_field.h" |
(...skipping 369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
380 text.find(ASCIIToUTF16("use my")) != string16::npos) | 380 text.find(ASCIIToUTF16("use my")) != string16::npos) |
381 // This text could be a checkbox label such as "same as my billing | 381 // This text could be a checkbox label such as "same as my billing |
382 // address" or "use my shipping address". | 382 // address" or "use my shipping address". |
383 // ++ It would help if we generally skipped all text that appears | 383 // ++ It would help if we generally skipped all text that appears |
384 // after a check box. | 384 // after a check box. |
385 return kGenericAddress; | 385 return kGenericAddress; |
386 | 386 |
387 // Not all pages say "billing address" and "shipping address" explicitly; | 387 // Not all pages say "billing address" and "shipping address" explicitly; |
388 // for example, Craft Catalog1.html has "Bill-to Address" and | 388 // for example, Craft Catalog1.html has "Bill-to Address" and |
389 // "Ship-to Address". | 389 // "Ship-to Address". |
390 size_t bill = text.find_last_of(ASCIIToUTF16("bill")); | 390 size_t bill = text.rfind(ASCIIToUTF16("bill")); |
391 size_t ship = text.find_last_of(ASCIIToUTF16("ship")); | 391 size_t ship = text.rfind(ASCIIToUTF16("ship")); |
392 | 392 |
393 if (bill != string16::npos && bill > ship) | 393 if (bill == string16::npos && ship == string16::npos) |
| 394 return kGenericAddress; |
| 395 |
| 396 if (bill != string16::npos && ship == string16::npos) |
394 return kBillingAddress; | 397 return kBillingAddress; |
395 | 398 |
396 if (ship != string16::npos) | 399 if (bill == string16::npos && ship != string16::npos) |
397 return kShippingAddress; | 400 return kShippingAddress; |
398 | 401 |
399 return kGenericAddress; | 402 if (bill > ship) |
| 403 return kBillingAddress; |
| 404 |
| 405 return kShippingAddress; |
400 } | 406 } |
OLD | NEW |