summaryrefslogtreecommitdiffstats
path: root/chrome/browser/views/tabs/tab_strip.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/views/tabs/tab_strip.cc')
-rw-r--r--chrome/browser/views/tabs/tab_strip.cc7
1 files changed, 1 insertions, 6 deletions
diff --git a/chrome/browser/views/tabs/tab_strip.cc b/chrome/browser/views/tabs/tab_strip.cc
index 73c19e4a..7d2a441 100644
--- a/chrome/browser/views/tabs/tab_strip.cc
+++ b/chrome/browser/views/tabs/tab_strip.cc
@@ -731,14 +731,9 @@ void TabStrip::SetAccessibleName(const std::wstring& name) {
}
views::View* TabStrip::GetViewForPoint(const gfx::Point& point) {
- return GetViewForPoint(point, false);
-}
-
-views::View* TabStrip::GetViewForPoint(const gfx::Point& point,
- bool can_create_floating) {
// Return any view that isn't a Tab or this TabStrip immediately. We don't
// want to interfere.
- views::View* v = View::GetViewForPoint(point, can_create_floating);
+ views::View* v = View::GetViewForPoint(point);
if (v && v != this && v->GetClassName() != Tab::kTabClassName)
return v;