| 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();
|
|
|