| Index: chrome/browser/gtk/browser_window_gtk.cc
|
| ===================================================================
|
| --- chrome/browser/gtk/browser_window_gtk.cc (revision 20304)
|
| +++ chrome/browser/gtk/browser_window_gtk.cc (working copy)
|
| @@ -559,8 +559,8 @@
|
| panel_controller_->UpdateTitleBar();
|
| #endif
|
|
|
| - std::wstring title = browser_->GetCurrentPageTitle();
|
| - gtk_window_set_title(window_, WideToUTF8(title).c_str());
|
| + string16 title = browser_->GetCurrentPageTitle();
|
| + gtk_window_set_title(window_, UTF16ToUTF8(title).c_str());
|
| if (ShouldShowWindowIcon()) {
|
| // TODO(tc): If we're showing a title bar, we should update the app icon.
|
| }
|
|
|