1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_UI_VIEWS_FRAME_TOP_CONTAINER_VIEW_H_
6 #define CHROME_BROWSER_UI_VIEWS_FRAME_TOP_CONTAINER_VIEW_H_
8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h"
10 #include "ui/views/view.h"
14 // Container for the BrowserView's tab strip, toolbar, and sometimes bookmark
15 // bar. In Chrome OS immersive fullscreen it stacks on top of other views in
16 // order to slide in and out over the web contents.
17 class TopContainerView
: public views::View
{
19 explicit TopContainerView(BrowserView
* browser_view
);
20 virtual ~TopContainerView();
22 // views::View overrides:
23 virtual const char* GetClassName() const OVERRIDE
;
24 virtual void OnPaintBackground(gfx::Canvas
* canvas
) OVERRIDE
;
27 // The parent of this view. Not owned.
28 BrowserView
* browser_view_
;
30 DISALLOW_COPY_AND_ASSIGN(TopContainerView
);
33 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_TOP_CONTAINER_VIEW_H_