diff options
Diffstat (limited to 'chrome/browser/autofill/personal_data_manager.cc')
-rw-r--r-- | chrome/browser/autofill/personal_data_manager.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/chrome/browser/autofill/personal_data_manager.cc b/chrome/browser/autofill/personal_data_manager.cc index 981c20b..a058b78 100644 --- a/chrome/browser/autofill/personal_data_manager.cc +++ b/chrome/browser/autofill/personal_data_manager.cc @@ -8,6 +8,7 @@ #include <iterator> #include "base/logging.h" +#include "base/string_number_conversions.h" #include "base/utf_string_conversions.h" #include "chrome/browser/autofill/autofill_manager.h" #include "chrome/browser/autofill/autofill_field.h" @@ -578,7 +579,7 @@ void PersonalDataManager::SetUniqueProfileLabels( // has an implicit index of 1. for (size_t i = 1; i < iter->second.size(); ++i) { string16 newlabel = iter->second[i]->Label() + - UintToString16(static_cast<unsigned int>(i + 1)); + base::UintToString16(static_cast<unsigned int>(i + 1)); iter->second[i]->set_label(newlabel); } } @@ -600,7 +601,7 @@ void PersonalDataManager::SetUniqueCreditCardLabels( // has an implicit index of 1. for (size_t i = 1; i < iter->second.size(); ++i) { string16 newlabel = iter->second[i]->Label() + - UintToString16(static_cast<unsigned int>(i + 1)); + base::UintToString16(static_cast<unsigned int>(i + 1)); iter->second[i]->set_label(newlabel); } } |