summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xchrome/browser/views/frame/app_panel_browser_frame_view.cc2
-rwxr-xr-xchrome/browser/views/frame/app_panel_browser_frame_view.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/views/frame/app_panel_browser_frame_view.cc b/chrome/browser/views/frame/app_panel_browser_frame_view.cc
index a220eee..d8a67c5 100755
--- a/chrome/browser/views/frame/app_panel_browser_frame_view.cc
+++ b/chrome/browser/views/frame/app_panel_browser_frame_view.cc
@@ -103,7 +103,7 @@ AppPanelBrowserFrameView::~AppPanelBrowserFrameView() {
// AppPanelBrowserFrameView, BrowserNonClientFrameView implementation:
gfx::Rect AppPanelBrowserFrameView::GetBoundsForTabStrip(
- TabStrip* tabstrip) const {
+ BaseTabStrip* tabstrip) const {
// App panels never show a tab strip.
NOTREACHED();
return gfx::Rect();
diff --git a/chrome/browser/views/frame/app_panel_browser_frame_view.h b/chrome/browser/views/frame/app_panel_browser_frame_view.h
index 1366cc9..6476ee8 100755
--- a/chrome/browser/views/frame/app_panel_browser_frame_view.h
+++ b/chrome/browser/views/frame/app_panel_browser_frame_view.h
@@ -11,9 +11,9 @@
#include "views/controls/button/button.h"
#include "views/window/non_client_view.h"
+class BaseTabStrip;
class BrowserView;
class TabContents;
-class TabStrip;
namespace gfx {
class Font;
}
@@ -33,7 +33,7 @@ class AppPanelBrowserFrameView : public BrowserNonClientFrameView,
virtual ~AppPanelBrowserFrameView();
// Overridden from BrowserNonClientFrameView:
- virtual gfx::Rect GetBoundsForTabStrip(TabStrip* tabstrip) const;
+ virtual gfx::Rect GetBoundsForTabStrip(BaseTabStrip* tabstrip) const;
virtual void UpdateThrobber(bool running);
virtual gfx::Size GetMinimumSize();