summaryrefslogtreecommitdiffstats
path: root/chrome/browser/views/frame/browser_root_view.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/views/frame/browser_root_view.h')
-rw-r--r--chrome/browser/views/frame/browser_root_view.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/views/frame/browser_root_view.h b/chrome/browser/views/frame/browser_root_view.h
index a5a2e39f..370ef5f 100644
--- a/chrome/browser/views/frame/browser_root_view.h
+++ b/chrome/browser/views/frame/browser_root_view.h
@@ -8,7 +8,7 @@
#include "views/widget/root_view.h"
class OSExchangeData;
-class TabStrip;
+class TabStripWrapper;
// RootView implementation used by BrowserFrame. This forwards drop events to
// the TabStrip. Visually the tabstrip extends to the top of the frame, but in
@@ -23,7 +23,7 @@ class BrowserRootView : public views::RootView {
// Sets the tabstrip associated with this window. This is used to forward
// drag and drop operations to, so no drops will be accepted if there is no
// tabstrip set.
- void set_tabstrip(TabStrip* tabstrip) { tabstrip_ = tabstrip; }
+ void set_tabstrip(TabStripWrapper* tabstrip) { tabstrip_ = tabstrip; }
virtual bool CanDrop(const OSExchangeData& data);
virtual void OnDragEntered(const views::DropTargetEvent& event);
@@ -41,7 +41,7 @@ class BrowserRootView : public views::RootView {
const views::DropTargetEvent& event);
// The TabStrip.
- TabStrip* tabstrip_;
+ TabStripWrapper* tabstrip_;
// Is a drop allowed? This is set by CanDrop.
bool can_drop_;