2018-09-11 15:27:47 -07:00
|
|
|
// Copyright (c) Facebook, Inc. and its affiliates.
|
2018-05-31 15:31:03 -07:00
|
|
|
|
|
|
|
// This source code is licensed under the MIT license found in the
|
|
|
|
// LICENSE file in the root directory of this source tree.
|
2018-04-10 12:45:59 -07:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2018-11-10 14:19:08 -08:00
|
|
|
#include <react/core/ShadowNode.h>
|
2018-11-27 18:29:39 -08:00
|
|
|
#include <react/mounting/ShadowViewMutation.h>
|
2018-04-10 12:45:59 -07:00
|
|
|
|
|
|
|
namespace facebook {
|
|
|
|
namespace react {
|
|
|
|
|
|
|
|
/*
|
2018-09-03 22:53:18 -07:00
|
|
|
* Calculates a list of view mutations which describes how the old
|
|
|
|
* `ShadowTree` can be transformed to the new one.
|
|
|
|
* The list of mutations might be and might not be optimal.
|
2018-04-10 12:45:59 -07:00
|
|
|
*/
|
2018-09-03 22:53:18 -07:00
|
|
|
ShadowViewMutationList calculateShadowViewMutations(
|
2018-10-09 16:25:13 -07:00
|
|
|
const ShadowNode &oldRootShadowNode,
|
|
|
|
const ShadowNode &newRootShadowNode);
|
2018-04-10 12:45:59 -07:00
|
|
|
|
|
|
|
} // namespace react
|
|
|
|
} // namespace facebook
|