blob: fdb28f1404373ea0753fe71ce3b19e697e961a53 [file] [log] [blame]
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef VisualViewportScrollEvent_h
#define VisualViewportScrollEvent_h
#include "core/dom/events/Event.h"
namespace blink {
class VisualViewportScrollEvent final : public Event {
public:
~VisualViewportScrollEvent() override;
static VisualViewportScrollEvent* Create() {
return new VisualViewportScrollEvent();
}
void DoneDispatchingEventAtCurrentTarget() override;
virtual void Trace(blink::Visitor* visitor) { Event::Trace(visitor); }
private:
VisualViewportScrollEvent();
};
} // namespace blink
#endif // VisualViewportScrollEvent_h