#ifndef CHROME_BROWSER_UI_VIEWS_APPS_SHAPED_APP_WINDOW_TARGETER_H_
#define CHROME_BROWSER_UI_VIEWS_APPS_SHAPED_APP_WINDOW_TARGETER_H_
#include "ui/wm/core/masked_window_targeter.h"
class ChromeNativeAppWindowViews;
class ShapedAppWindowTargeter : public wm::MaskedWindowTargeter {
public:
ShapedAppWindowTargeter(aura::Window* window,
ChromeNativeAppWindowViews* app_window);
virtual ~ShapedAppWindowTargeter();
private:
virtual bool GetHitTestMask(aura::Window* window,
gfx::Path* mask) const OVERRIDE;
ChromeNativeAppWindowViews* app_window_;
DISALLOW_COPY_AND_ASSIGN(ShapedAppWindowTargeter);
};
#endif