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

Unified Diff: chrome_frame/chrome_frame_activex.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/chrome_active_document.cc ('k') | chrome_frame/chrome_frame_activex_base.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/chrome_frame_activex.cc
diff --git a/chrome_frame/chrome_frame_activex.cc b/chrome_frame/chrome_frame_activex.cc
index 4cb3c46e58c65bef07eaee4873fa476f0c42e27f..037ab7119eb84d9319b1d01393d79be6cc584ac0 100644
--- a/chrome_frame/chrome_frame_activex.cc
+++ b/chrome_frame/chrome_frame_activex.cc
@@ -312,7 +312,7 @@ HRESULT ChromeFrameActivex::IOleObject_SetClientSite(
if (document) {
base::win::ScopedBstr url;
if (SUCCEEDED(document->get_URL(url.Receive())))
- WideToUTF8(url, url.Length(), &document_url_);
+ base::WideToUTF8(url, url.Length(), &document_url_);
}
// Probe to see whether the host implements the privileged service.
@@ -341,7 +341,7 @@ HRESULT ChromeFrameActivex::IOleObject_SetClientSite(
std::string utf8_url;
if (url_.Length()) {
- WideToUTF8(url_, url_.Length(), &utf8_url);
+ base::WideToUTF8(url_, url_.Length(), &utf8_url);
}
InitializeAutomationSettings();
« no previous file with comments | « chrome_frame/chrome_active_document.cc ('k') | chrome_frame/chrome_frame_activex_base.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698