| Index: chrome/browser/ui/cocoa/tabs/tab_strip_controller.mm
|
| ===================================================================
|
| --- chrome/browser/ui/cocoa/tabs/tab_strip_controller.mm (revision 115435)
|
| +++ chrome/browser/ui/cocoa/tabs/tab_strip_controller.mm (working copy)
|
| @@ -1422,10 +1422,10 @@
|
| TabLoadingState oldState = [tabController loadingState];
|
| TabLoadingState newState = kTabDone;
|
| NSImage* throbberImage = nil;
|
| - if (contents->tab_contents()->is_crashed()) {
|
| + if (contents->tab_contents()->IsCrashed()) {
|
| newState = kTabCrashed;
|
| newHasIcon = true;
|
| - } else if (contents->tab_contents()->waiting_for_response()) {
|
| + } else if (contents->tab_contents()->IsWaitingForResponse()) {
|
| newState = kTabWaiting;
|
| throbberImage = throbberWaitingImage;
|
| } else if (contents->tab_contents()->IsLoading()) {
|
|
|