#ifndef ASH_FRAME_FRAME_BORDER_HITTEST_CONTROLLER_H_
#define ASH_FRAME_FRAME_BORDER_HITTEST_CONTROLLER_H_
#include "ash/ash_export.h"
#include "base/basictypes.h"
#include "base/compiler_specific.h"
namespace aura {
class Window;
}
namespace gfx {
class Point;
}
namespace views {
class NonClientFrameView;
class Widget;
}
namespace ash {
class FrameCaptionButtonContainerView;
class ASH_EXPORT FrameBorderHitTestController {
public:
explicit FrameBorderHitTestController(views::Widget* frame);
virtual ~FrameBorderHitTestController();
static int NonClientHitTest(
views::NonClientFrameView* view,
FrameCaptionButtonContainerView* caption_button_container,
const gfx::Point& point_in_widget);
private:
aura::Window* frame_window_;
DISALLOW_COPY_AND_ASSIGN(FrameBorderHitTestController);
};
}
#endif