| OLD | NEW | 
|---|
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be | 
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. | 
| 4 | 4 | 
| 5 #include "chrome/browser/ui/views/tabs/tab_strip.h" | 5 #include "chrome/browser/ui/views/tabs/tab_strip.h" | 
| 6 | 6 | 
| 7 #include <algorithm> | 7 #include <algorithm> | 
| 8 | 8 | 
| 9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" | 
| 10 #include "base/stl_util-inl.h" | 10 #include "base/stl_util-inl.h" | 
| 11 #include "base/utf_string_conversions.h" | 11 #include "base/utf_string_conversions.h" | 
| 12 #include "chrome/browser/defaults.h" | 12 #include "chrome/browser/defaults.h" | 
| 13 #include "chrome/browser/themes/theme_service.h" | 13 #include "chrome/browser/themes/theme_service.h" | 
| 14 #include "chrome/browser/ui/view_ids.h" | 14 #include "chrome/browser/ui/view_ids.h" | 
| 15 #include "chrome/browser/ui/views/tabs/tab.h" | 15 #include "chrome/browser/ui/views/tabs/tab.h" | 
| 16 #include "chrome/browser/ui/views/tabs/tab_strip_controller.h" | 16 #include "chrome/browser/ui/views/tabs/tab_strip_controller.h" | 
| 17 #include "grit/generated_resources.h" | 17 #include "grit/generated_resources.h" | 
| 18 #include "grit/theme_resources.h" | 18 #include "grit/theme_resources.h" | 
|  | 19 #include "grit/theme_resources_standard.h" | 
| 19 #include "ui/base/accessibility/accessible_view_state.h" | 20 #include "ui/base/accessibility/accessible_view_state.h" | 
| 20 #include "ui/base/animation/animation_container.h" | 21 #include "ui/base/animation/animation_container.h" | 
| 21 #include "ui/base/dragdrop/drag_drop_types.h" | 22 #include "ui/base/dragdrop/drag_drop_types.h" | 
| 22 #include "ui/base/l10n/l10n_util.h" | 23 #include "ui/base/l10n/l10n_util.h" | 
| 23 #include "ui/base/resource/resource_bundle.h" | 24 #include "ui/base/resource/resource_bundle.h" | 
| 24 #include "ui/gfx/canvas_skia.h" | 25 #include "ui/gfx/canvas_skia.h" | 
| 25 #include "ui/gfx/path.h" | 26 #include "ui/gfx/path.h" | 
| 26 #include "ui/gfx/size.h" | 27 #include "ui/gfx/size.h" | 
| 27 #include "views/controls/image_view.h" | 28 #include "views/controls/image_view.h" | 
| 28 #include "views/widget/default_theme_provider.h" | 29 #include "views/widget/default_theme_provider.h" | 
| (...skipping 983 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 1012 int TabStrip::GetAvailableWidthForTabs(Tab* last_tab) const { | 1013 int TabStrip::GetAvailableWidthForTabs(Tab* last_tab) const { | 
| 1013   return last_tab->x() + last_tab->width(); | 1014   return last_tab->x() + last_tab->width(); | 
| 1014 } | 1015 } | 
| 1015 | 1016 | 
| 1016 bool TabStrip::IsPointInTab(Tab* tab, | 1017 bool TabStrip::IsPointInTab(Tab* tab, | 
| 1017                             const gfx::Point& point_in_tabstrip_coords) { | 1018                             const gfx::Point& point_in_tabstrip_coords) { | 
| 1018   gfx::Point point_in_tab_coords(point_in_tabstrip_coords); | 1019   gfx::Point point_in_tab_coords(point_in_tabstrip_coords); | 
| 1019   View::ConvertPointToView(this, tab, &point_in_tab_coords); | 1020   View::ConvertPointToView(this, tab, &point_in_tab_coords); | 
| 1020   return tab->HitTest(point_in_tab_coords); | 1021   return tab->HitTest(point_in_tab_coords); | 
| 1021 } | 1022 } | 
| OLD | NEW | 
|---|