#ifndef CHROME_BROWSER_UI_COCOA_LOCATION_BAR_TRANSLATE_DECORATION_H_
#define CHROME_BROWSER_UI_COCOA_LOCATION_BAR_TRANSLATE_DECORATION_H_
#import <Cocoa/Cocoa.h>
#include "chrome/browser/ui/cocoa/location_bar/image_decoration.h"
class CommandUpdater;
@class TranslateBubbleController;
class TranslateDecoration : public ImageDecoration {
public:
explicit TranslateDecoration(CommandUpdater* command_updater);
virtual ~TranslateDecoration();
void SetLit(bool on);
virtual bool AcceptsMousePress() OVERRIDE;
virtual bool OnMousePressed(NSRect frame) OVERRIDE;
virtual NSString* GetToolTip() OVERRIDE;
virtual NSPoint GetBubblePointInFrame(NSRect frame) OVERRIDE;
private:
CommandUpdater* command_updater_;
DISALLOW_COPY_AND_ASSIGN(TranslateDecoration);
};
#endif