| Index: chrome/browser/ui/views/frame/browser_view.h
|
| ===================================================================
|
| --- chrome/browser/ui/views/frame/browser_view.h (revision 71251)
|
| +++ chrome/browser/ui/views/frame/browser_view.h (working copy)
|
| @@ -26,7 +26,6 @@
|
| #include "chrome/browser/ui/views/unhandled_keyboard_event_handler.h"
|
| #include "chrome/common/notification_registrar.h"
|
| #include "gfx/native_widget_types.h"
|
| -#include "views/controls/single_split_view.h"
|
| #include "views/window/client_view.h"
|
| #include "views/window/window_delegate.h"
|
|
|
| @@ -54,7 +53,6 @@
|
| class LocationBarView;
|
| class SideTabStrip;
|
| class StatusBubbleViews;
|
| -class TabContentsContainer;
|
| class TabStripModel;
|
| class ToolbarView;
|
| class ZoomMenuModel;
|
| @@ -68,6 +66,7 @@
|
| namespace views {
|
| class ExternalFocusTracker;
|
| class Menu;
|
| +class SingleSplitView;
|
| }
|
|
|
| ///////////////////////////////////////////////////////////////////////////////
|
| @@ -85,7 +84,7 @@
|
| public views::WindowDelegate,
|
| public views::ClientView,
|
| public InfoBarContainer::Delegate,
|
| - public views::SingleSplitView::Observer {
|
| + public TabContentsContainer::ReservedAreaDelegate {
|
| public:
|
| // The browser view's class name.
|
| static const char kViewClassName[];
|
| @@ -397,8 +396,8 @@
|
| // InfoBarContainer::Delegate overrides
|
| virtual void InfoBarSizeChanged(bool is_animating);
|
|
|
| - // views::SingleSplitView::Observer overrides:
|
| - virtual bool SplitHandleMoved(views::SingleSplitView* view);
|
| + // TabContentsContainer::ReservedAreaDelegate overrides.
|
| + virtual void UpdateReservedContentsRect(const TabContentsContainer* source);
|
|
|
| protected:
|
| // Appends to |toolbars| a pointer to each AccessiblePaneView that
|
| @@ -523,9 +522,6 @@
|
| void ProcessTabSelected(TabContentsWrapper* new_contents,
|
| bool change_tab_contents);
|
|
|
| - // Exposes resize corner size to BrowserViewLayout.
|
| - gfx::Size GetResizeCornerSize() const;
|
| -
|
| // Last focused view that issued a tab traversal.
|
| int last_focused_view_storage_id_;
|
|
|
|
|