| Index: chrome/browser/ui/gtk/browser_titlebar.cc
 | 
| diff --git a/chrome/browser/ui/gtk/browser_titlebar.cc b/chrome/browser/ui/gtk/browser_titlebar.cc
 | 
| index 9ebef700c434ae058ea01fda3c67e92f0f16c299..171735fde2b0bd8a1fec2d1ee6029a4f7b587f35 100644
 | 
| --- a/chrome/browser/ui/gtk/browser_titlebar.cc
 | 
| +++ b/chrome/browser/ui/gtk/browser_titlebar.cc
 | 
| @@ -606,7 +606,8 @@ void BrowserTitlebar::UpdateTitleAndIcon() {
 | 
|    // Get the page title and elide it to the available space.
 | 
|    base::string16 title =
 | 
|        browser_window_->browser()->GetWindowTitleForCurrentTab();
 | 
| -  gtk_label_set_text(GTK_LABEL(app_mode_title_), UTF16ToUTF8(title).c_str());
 | 
| +  gtk_label_set_text(GTK_LABEL(app_mode_title_),
 | 
| +                     base::UTF16ToUTF8(title).c_str());
 | 
|  
 | 
|    if (browser_window_->browser()->is_app()) {
 | 
|      switch (browser_window_->browser()->type()) {
 | 
| 
 |