Index: chrome/browser/ui/browser.cc |
diff --git a/chrome/browser/ui/browser.cc b/chrome/browser/ui/browser.cc |
index 2c51194fd129aecb50799a8cf49df8b6984b054d..ffb499ed7a7c0a4b5170eddd7a95d774542afe63 100644 |
--- a/chrome/browser/ui/browser.cc |
+++ b/chrome/browser/ui/browser.cc |
@@ -1436,7 +1436,7 @@ void Browser::OpenCurrentURL() { |
if (OpenInstant(open_disposition)) |
return; |
- GURL url(WideToUTF8(location_bar->GetInputString())); |
+ GURL url(UTF16ToUTF8(location_bar->GetInputString())); |
Evan Martin
2011/08/08 16:34:05
It appears you can construct a GURL with a string1
|
if (open_disposition == CURRENT_TAB && TabFinder::IsEnabled()) { |
Browser* existing_browser = NULL; |