Chromium Code Reviews| Index: Source/core/page/scrolling/ScrollStateCallback.cpp |
| diff --git a/Source/core/page/scrolling/ScrollStateCallback.cpp b/Source/core/page/scrolling/ScrollStateCallback.cpp |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..f2490fb98ab19652e1cbae0cdd7ade403931e80b |
| --- /dev/null |
| +++ b/Source/core/page/scrolling/ScrollStateCallback.cpp |
| @@ -0,0 +1,25 @@ |
| +// Copyright 2015 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. |
| + |
| +#include "config.h" |
| +#include "core/page/scrolling/ScrollStateCallback.h" |
| + |
| +#include "bindings/core/v8/V8Element.h" |
| +#include "bindings/core/v8/V8ScrollState.h" |
| + |
| +namespace blink { |
| + |
| +ScrollStateCallback::ScrollStateCallback() |
| + : m_callbackType(CallbackType::UNSET) |
| +{ |
| +} |
| + |
| +void ScrollStateCallback::handleEventForElement(Element& targetElement, ScrollState* scrollState) |
| +{ |
| + m_targetElement = &targetElement; |
|
haraken
2015/06/30 07:08:30
Instead of storing m_targetElement to ScrollStateC
|
| + handleEvent(scrollState); |
| + m_targetElement = nullptr; |
| +} |
| + |
| +} // namespace blink |