Index: chrome/browser/ui/views/tabs/base_tab_strip.cc |
=================================================================== |
--- chrome/browser/ui/views/tabs/base_tab_strip.cc (revision 86084) |
+++ chrome/browser/ui/views/tabs/base_tab_strip.cc (working copy) |
@@ -592,10 +592,10 @@ |
return NULL; // No tab contains the point. |
// Walk up the view hierarchy until we find a tab, or the TabStrip. |
- while (view && view != this && view->GetID() != VIEW_ID_TAB) |
+ while (view && view != this && view->id() != VIEW_ID_TAB) |
view = view->parent(); |
- return view && view->GetID() == VIEW_ID_TAB ? |
+ return view && view->id() == VIEW_ID_TAB ? |
static_cast<BaseTab*>(view) : NULL; |
} |