#ifndef CONTENT_CHILD_WEBSCROLLBARBEHAVIOR_IMPL_GTKORAURA_H_
#define CONTENT_CHILD_WEBSCROLLBARBEHAVIOR_IMPL_GTKORAURA_H_
#include "third_party/WebKit/public/platform/WebScrollbarBehavior.h"
namespace content {
class WebScrollbarBehaviorImpl : public blink::WebScrollbarBehavior {
public:
virtual bool shouldCenterOnThumb(
blink::WebScrollbarBehavior::Button mouseButton,
bool shiftKeyPressed,
bool altKeyPressed);
virtual bool shouldSnapBackToDragOrigin(const blink::WebPoint& eventPoint,
const blink::WebRect& scrollbarRect,
bool isHorizontal);
};
}
#endif