Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(181)

Unified Diff: chrome/browser/views/frame/browser_root_view.h

Issue 155242: Add temporary TabStripWrapper interface that is implemented by both TabStrip ... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 11 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/views/frame/browser_root_view.h
===================================================================
--- chrome/browser/views/frame/browser_root_view.h (revision 20183)
+++ chrome/browser/views/frame/browser_root_view.h (working copy)
@@ -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 @@
// 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 @@
const views::DropTargetEvent& event);
// The TabStrip.
- TabStrip* tabstrip_;
+ TabStripWrapper* tabstrip_;
// Is a drop allowed? This is set by CanDrop.
bool can_drop_;
« no previous file with comments | « chrome/browser/views/frame/browser_non_client_frame_view.h ('k') | chrome/browser/views/frame/browser_root_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698