| Index: chrome/browser/ui/gtk/location_bar_view_gtk.cc
|
| diff --git a/chrome/browser/ui/gtk/location_bar_view_gtk.cc b/chrome/browser/ui/gtk/location_bar_view_gtk.cc
|
| index 6bd7fa38ed07528575b1eb1d9d96efdac3f60bfb..10fc40d7a903f358301c444ffcb47e572f3a11dc 100644
|
| --- a/chrome/browser/ui/gtk/location_bar_view_gtk.cc
|
| +++ b/chrome/browser/ui/gtk/location_bar_view_gtk.cc
|
| @@ -472,7 +472,7 @@ void LocationBarViewGtk::OnAutocompleteAccept(const GURL& url,
|
| PageTransition::Type transition,
|
| const GURL& alternate_nav_url) {
|
| if (url.is_valid()) {
|
| - location_input_ = UTF8ToWide(url.spec());
|
| + location_input_ = UTF8ToUTF16(url.spec());
|
| disposition_ = disposition;
|
| transition_ = transition;
|
|
|
| @@ -596,7 +596,7 @@ void LocationBarViewGtk::SetSuggestedText(const string16& text,
|
| location_entry_->model()->SetSuggestedText(text, behavior);
|
| }
|
|
|
| -std::wstring LocationBarViewGtk::GetInputString() const {
|
| +string16 LocationBarViewGtk::GetInputString() const {
|
| return location_input_;
|
| }
|
|
|
|
|