mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
f2191ecbc5
Summary: changelog: [internal] Clean up destructors for classes in LayoutAnimations module. Reviewed By: RSNara Differential Revision: D30728212 fbshipit-source-id: 612afb8ebf1407318d22fc461fcc7e03a2b72c47
33 lines
893 B
C++
33 lines
893 B
C++
/*
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <react/renderer/animations/LayoutAnimationKeyFrameManager.h>
|
|
#include <react/renderer/core/ReactPrimitives.h>
|
|
#include <react/renderer/mounting/ShadowViewMutation.h>
|
|
|
|
namespace facebook {
|
|
namespace react {
|
|
|
|
class LayoutAnimationDriver : public LayoutAnimationKeyFrameManager {
|
|
public:
|
|
LayoutAnimationDriver(
|
|
RuntimeExecutor runtimeExecutor,
|
|
LayoutAnimationStatusDelegate *delegate)
|
|
: LayoutAnimationKeyFrameManager(runtimeExecutor, delegate) {}
|
|
|
|
protected:
|
|
virtual void animationMutationsForFrame(
|
|
SurfaceId surfaceId,
|
|
ShadowViewMutation::List &mutationsList,
|
|
uint64_t now) const override;
|
|
};
|
|
|
|
} // namespace react
|
|
} // namespace facebook
|