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

Unified Diff: chrome_frame/urlmon_moniker.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/urlmon_bind_status_callback.cc ('k') | chrome_frame/urlmon_url_request.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/urlmon_moniker.cc
diff --git a/chrome_frame/urlmon_moniker.cc b/chrome_frame/urlmon_moniker.cc
index 432dd92a2483697c7758f93e9f9bfe28b330de06..0bf3469cdafb78fa87d38bffeb8d5aa2c07cc75f 100644
--- a/chrome_frame/urlmon_moniker.cc
+++ b/chrome_frame/urlmon_moniker.cc
@@ -53,14 +53,14 @@ HRESULT NavigationManager::NavigateToCurrentUrlInCF(IBrowserService* browser) {
std::wstring headers;
if (!referrer_.empty()) {
headers = base::StringPrintf(L"Referer: %ls\r\n\r\n",
- ASCIIToWide(referrer_).c_str());
+ base::ASCIIToWide(referrer_).c_str());
}
// Pass in URL fragments if applicable.
std::wstring fragment;
GURL parsed_moniker_url(url_);
if (parsed_moniker_url.has_ref()) {
- fragment = UTF8ToWide(parsed_moniker_url.ref());
+ fragment = base::UTF8ToWide(parsed_moniker_url.ref());
}
VARIANT flags = { VT_I4 };
« no previous file with comments | « chrome_frame/urlmon_bind_status_callback.cc ('k') | chrome_frame/urlmon_url_request.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698