#ifndef ASH_SYSTEM_TRAY_TRAY_POPUP_LABEL_BUTTON_BORDER_H_
#define ASH_SYSTEM_TRAY_TRAY_POPUP_LABEL_BUTTON_BORDER_H_
#include "base/basictypes.h"
#include "base/compiler_specific.h"
#include "ui/views/controls/button/label_button_border.h"
namespace ash {
class TrayPopupLabelButtonBorder : public views::LabelButtonBorder {
public:
TrayPopupLabelButtonBorder();
virtual ~TrayPopupLabelButtonBorder();
virtual void Paint(const views::View& view, gfx::Canvas* canvas) OVERRIDE;
private:
DISALLOW_COPY_AND_ASSIGN(TrayPopupLabelButtonBorder);
};
}
#endif