#ifndef CHROME_BROWSER_UI_VIEWS_MESSAGE_CENTER_MESSAGE_CENTER_FRAME_VIEW_H_
#define CHROME_BROWSER_UI_VIEWS_MESSAGE_CENTER_MESSAGE_CENTER_FRAME_VIEW_H_
#include "ui/views/window/non_client_view.h"
namespace views {
class Label;
class LabelButton;
class BubbleBorder;
}
namespace message_center {
class MessageCenterFrameView : public views::NonClientFrameView {
public:
explicit MessageCenterFrameView();
virtual ~MessageCenterFrameView();
virtual gfx::Rect GetBoundsForClientView() const OVERRIDE;
virtual gfx::Rect GetWindowBoundsForClientBounds(
const gfx::Rect& client_bounds) const OVERRIDE;
virtual int NonClientHitTest(const gfx::Point& point) OVERRIDE;
virtual void GetWindowMask(const gfx::Size& size,
gfx::Path* window_mask) OVERRIDE;
virtual void ResetWindowControls() OVERRIDE;
virtual void UpdateWindowIcon() OVERRIDE;
virtual void UpdateWindowTitle() OVERRIDE;
virtual gfx::Insets GetInsets() const OVERRIDE;
virtual const char* GetClassName() const OVERRIDE;
private:
DISALLOW_COPY_AND_ASSIGN(MessageCenterFrameView);
};
}
#endif