#ifndef UI_APP_LIST_VIEWS_APP_LIST_BACKGROUND_H_
#define UI_APP_LIST_VIEWS_APP_LIST_BACKGROUND_H_
#include "base/basictypes.h"
#include "base/compiler_specific.h"
#include "ui/views/background.h"
namespace views {
class View;
}
namespace app_list {
class AppListMainView;
class AppListBackground : public views::Background {
public:
AppListBackground(int corner_radius,
AppListMainView* main_view);
virtual ~AppListBackground();
private:
virtual void Paint(gfx::Canvas* canvas, views::View* view) const OVERRIDE;
const int corner_radius_;
const AppListMainView* main_view_;
DISALLOW_COPY_AND_ASSIGN(AppListBackground);
};
}
#endif