Index: chrome/browser/ui/views/tabs/tab_strip.cc |
diff --git a/chrome/browser/ui/views/tabs/tab_strip.cc b/chrome/browser/ui/views/tabs/tab_strip.cc |
index 0e04f7bf9389ecf8ddd44d11916d44b16fdcf4c8..497269ffebb6bf558023ef711cec80fd0bee82d9 100644 |
--- a/chrome/browser/ui/views/tabs/tab_strip.cc |
+++ b/chrome/browser/ui/views/tabs/tab_strip.cc |
@@ -378,6 +378,9 @@ void TabStrip::RemoveTabDelegate::HighlightCloseButton() { |
// TabStrip, public: |
// static |
+const char TabStrip::kViewClassName[] = "TabStrip"; |
+ |
+// static |
const int TabStrip::kMiniToNonMiniGap = 3; |
TabStrip::TabStrip(TabStripController* controller) |
@@ -913,6 +916,10 @@ void TabStrip::PaintClosingTabs(gfx::Canvas* canvas, int index) { |
} |
} |
+std::string TabStrip::GetClassName() const { |
+ return kViewClassName; |
+} |
+ |
gfx::Size TabStrip::GetPreferredSize() { |
// Report the minimum width as the size required for a single selected tab |
// plus the new tab button. Don't base it on the actual number of tabs because |