#ifndef CHROME_BROWSER_ASH_INPUT_METHOD_ASSISTIVE_WINDOW_CONTROLLER_DELEGATE_H_
#define CHROME_BROWSER_ASH_INPUT_METHOD_ASSISTIVE_WINDOW_CONTROLLER_DELEGATE_H_
namespace ui {
namespace ime {
struct AssistiveWindowButton;
}
}
namespace ash {
namespace ime {
struct AssistiveWindow;
}
namespace input_method {
class AssistiveWindowControllerDelegate {
public:
virtual void AssistiveWindowButtonClicked(
const ui::ime::AssistiveWindowButton& button) const = 0;
virtual void AssistiveWindowChanged(
const ash::ime::AssistiveWindow& window) const = 0;
protected:
AssistiveWindowControllerDelegate() = default;
virtual ~AssistiveWindowControllerDelegate() = default;
};
}
}
#endif