blob: 31f568e8e8389b16220d15d463ca2787fc62f860 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_VIEWS_THEME_BACKGROUND_H_
#define CHROME_BROWSER_VIEWS_THEME_BACKGROUND_H_
#include "views/background.h"
class BrowserView;
namespace views {
class View;
};
////////////////////////////////////////////////////////////////////////////////
//
// ThemeBackground class.
//
// A ThemeBackground is used to paint the background theme image in a
// view in such a way that it's consistent with the frame's theme
// image. It takes care of active/inactive state, incognito state and
// the offset from the frame view.
//
////////////////////////////////////////////////////////////////////////////////
class ThemeBackground : public views::Background {
public:
explicit ThemeBackground(BrowserView* browser);
virtual ~ThemeBackground() {}
// Overridden from views:;Background.
virtual void Paint(gfx::Canvas* canvas, views::View* view) const;
private:
BrowserView* browser_view_;
DISALLOW_COPY_AND_ASSIGN(ThemeBackground);
};
#endif // CHROME_BROWSER_VIEWS_THEME_BACKGROUND_H_
|