#ifndef CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_TRANSLATE_ICON_VIEW_H_
#define CHROME_BROWSER_UI_VIEWS_LOCATION_BAR_TRANSLATE_ICON_VIEW_H_
#include "chrome/browser/ui/views/location_bar/bubble_icon_view.h"
class CommandUpdater;
class TranslateIconView : public BubbleIconView {
 public:
  explicit TranslateIconView(CommandUpdater* command_updater);
  virtual ~TranslateIconView();
  
  void SetToggled(bool on);
 protected:
  
  virtual bool IsBubbleShowing() const OVERRIDE;
  virtual void OnExecuting(
      BubbleIconView::ExecuteSource execute_source) OVERRIDE;
 private:
  DISALLOW_COPY_AND_ASSIGN(TranslateIconView);
};
#endif