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

Unified Diff: chrome/browser/ui/autofill/autofill_dialog_models.cc

Issue 112913004: Update some uses of UTF conversions in chrome/browser to use the base:: namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/autofill/autofill_dialog_models.cc
diff --git a/chrome/browser/ui/autofill/autofill_dialog_models.cc b/chrome/browser/ui/autofill/autofill_dialog_models.cc
index 83cb80c5e5a8ee99cbdde72e60e8ddaf5702ac35..1b90980d919aba1d3cdef2b4a78ec38bd5937b10 100644
--- a/chrome/browser/ui/autofill/autofill_dialog_models.cc
+++ b/chrome/browser/ui/autofill/autofill_dialog_models.cc
@@ -153,7 +153,7 @@ int MonthComboboxModel::GetItemCount() const {
// static
base::string16 MonthComboboxModel::FormatMonth(int index) {
- return ASCIIToUTF16(base::StringPrintf("%.2d", index));
+ return base::ASCIIToUTF16(base::StringPrintf("%.2d", index));
}
base::string16 MonthComboboxModel::GetItemAt(int index) {

Powered by Google App Engine
This is Rietveld 408576698