| Index: chrome/browser/ui/gtk/browser_titlebar.cc
|
| ===================================================================
|
| --- chrome/browser/ui/gtk/browser_titlebar.cc (revision 115435)
|
| +++ chrome/browser/ui/gtk/browser_titlebar.cc (working copy)
|
| @@ -640,7 +640,7 @@
|
|
|
| if (tab_contents && tab_contents->IsLoading()) {
|
| GdkPixbuf* icon_pixbuf =
|
| - throbber_.GetNextFrame(tab_contents->waiting_for_response());
|
| + throbber_.GetNextFrame(tab_contents->IsWaitingForResponse());
|
| gtk_image_set_from_pixbuf(GTK_IMAGE(app_mode_favicon_), icon_pixbuf);
|
| } else {
|
| ResourceBundle& rb = ResourceBundle::GetSharedInstance();
|
| @@ -991,7 +991,7 @@
|
| browser_window_->browser()->GetSelectedTabContents();
|
| if (tab_contents) {
|
| return controller.IsItemChecked(browser_window_->browser()->profile(),
|
| - tab_contents->encoding(),
|
| + tab_contents->GetEncoding(),
|
| command_id);
|
| }
|
| return false;
|
|
|