Index: chrome/browser/ui/views/tabs/tab_strip.h |
diff --git a/chrome/browser/ui/views/tabs/tab_strip.h b/chrome/browser/ui/views/tabs/tab_strip.h |
index 0e717bee2fa152a4d9a4cfd153713167ec101bec..b0f47f12e55efe798a4d1496f25cd520ab5c559d 100644 |
--- a/chrome/browser/ui/views/tabs/tab_strip.h |
+++ b/chrome/browser/ui/views/tabs/tab_strip.h |
@@ -214,7 +214,8 @@ class TabStrip : public views::View, |
// views::View overrides: |
virtual void Layout() OVERRIDE; |
- virtual void PaintChildren(gfx::Canvas* canvas) OVERRIDE; |
+ virtual void PaintChildren(gfx::Canvas* canvas, |
+ const views::CullSet& cull_set) OVERRIDE; |
virtual const char* GetClassName() const OVERRIDE; |
virtual gfx::Size GetPreferredSize() OVERRIDE; |
// NOTE: the drag and drop methods are invoked from FrameView. This is done |
@@ -409,7 +410,9 @@ class TabStrip : public views::View, |
TabDragController* ReleaseDragController(); |
// Paints all the tabs in |tabs_closing_map_[index]|. |
- void PaintClosingTabs(gfx::Canvas* canvas, int index); |
+ void PaintClosingTabs(gfx::Canvas* canvas, |
+ int index, |
+ const views::CullSet& cull_set); |
// Invoked when a mouse event occurs over |source|. Potentially switches the |
// layout type. |