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

Unified Diff: chrome/browser/ui/autofill/autofill_popup_controller_impl.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_popup_controller_impl.cc
diff --git a/chrome/browser/ui/autofill/autofill_popup_controller_impl.cc b/chrome/browser/ui/autofill/autofill_popup_controller_impl.cc
index 911f7c3387f339bece68ca0c3140fced3bfaddbd..d6e5582635bc0b0e2bba0a4f65b842474d4a7b65 100644
--- a/chrome/browser/ui/autofill/autofill_popup_controller_impl.cc
+++ b/chrome/browser/ui/autofill/autofill_popup_controller_impl.cc
@@ -342,7 +342,7 @@ void AutofillPopupControllerImpl::AcceptSuggestion(size_t index) {
int AutofillPopupControllerImpl::GetIconResourceID(
const base::string16& resource_name) const {
for (size_t i = 0; i < arraysize(kDataResources); ++i) {
- if (resource_name == ASCIIToUTF16(kDataResources[i].name))
+ if (resource_name == base::ASCIIToUTF16(kDataResources[i].name))
return kDataResources[i].id;
}

Powered by Google App Engine
This is Rietveld 408576698