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

Unified Diff: chrome_frame/http_negotiate.cc

Issue 112433004: Update uses of UTF conversions in chrome_frame/, chromeos/, components/ 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
« no previous file with comments | « chrome_frame/find_dialog.cc ('k') | chrome_frame/metrics_service.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/http_negotiate.cc
diff --git a/chrome_frame/http_negotiate.cc b/chrome_frame/http_negotiate.cc
index 962469438e3923808c146d793af2f93991e65332..835d0eb53cee063db3234f310ed4566594755481 100644
--- a/chrome_frame/http_negotiate.cc
+++ b/chrome_frame/http_negotiate.cc
@@ -281,7 +281,7 @@ HRESULT HttpNegotiatePatch::BeginningTransaction(
*additional_headers = reinterpret_cast<wchar_t*>(::CoTaskMemRealloc(
*additional_headers,
(updated_headers.length() + 1) * sizeof(wchar_t)));
- lstrcpyW(*additional_headers, ASCIIToWide(updated_headers).c_str());
+ lstrcpyW(*additional_headers, base::ASCIIToWide(updated_headers).c_str());
} else {
// TODO(erikwright): Remove the user agent if it is present (i.e., because
// of PostPlatform setting in the registry).
« no previous file with comments | « chrome_frame/find_dialog.cc ('k') | chrome_frame/metrics_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698