Index: chrome_frame/protocol_sink_wrap.cc |
diff --git a/chrome_frame/protocol_sink_wrap.cc b/chrome_frame/protocol_sink_wrap.cc |
index b94e7c020fb39c38139a04abc01f73e066e2b091..9bd069ed86d4aea293956b72ee5a43cb56e3f12c 100644 |
--- a/chrome_frame/protocol_sink_wrap.cc |
+++ b/chrome_frame/protocol_sink_wrap.cc |
@@ -321,7 +321,7 @@ RendererType DetermineRendererType(void* buffer, DWORD size, bool last_chance) { |
std::wstring html_contents; |
// TODO(joshia): detect and handle different content encodings |
- UTF8ToWide(reinterpret_cast<char*>(buffer), size, &html_contents); |
+ base::UTF8ToWide(reinterpret_cast<char*>(buffer), size, &html_contents); |
// Note that document_contents_ may have NULL characters in it. While |
// browsers may handle this properly, we don't and will stop scanning |