diff options
Diffstat (limited to 'content/shell/browser/shell_win.cc')
-rw-r--r-- | content/shell/browser/shell_win.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/shell/browser/shell_win.cc b/content/shell/browser/shell_win.cc index b9e57a9..3e253ff 100644 --- a/content/shell/browser/shell_win.cc +++ b/content/shell/browser/shell_win.cc @@ -76,7 +76,7 @@ void Shell::PlatformEnableUIControl(UIControl control, bool is_enabled) { } void Shell::PlatformSetAddressBarURL(const GURL& url) { - std::wstring url_string = UTF8ToWide(url.spec()); + std::wstring url_string = base::UTF8ToWide(url.spec()); SendMessage(url_edit_view_, WM_SETTEXT, 0, reinterpret_cast<LPARAM>(url_string.c_str())); } |