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

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

Issue 2078016: AutoFill fill billing address when credit card settings specify a billing address. (Closed)
Patch Set: Addressing review comments. Created 10 years, 7 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
« no previous file with comments | « no previous file | chrome/browser/autofill/address_field_unittest.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_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
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 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/autofill/address_field_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698