mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-06-17 01:11:31 +08:00
Summary: This diff implements encapsulating all time metrics in a single class for better extensibility and readability. Reviewed By: JoshuaGross Differential Revision: D15179835 fbshipit-source-id: 62bdf94435a0d37a87ad9bad613cc8e38043a235
47 lines
1.1 KiB
C++
47 lines
1.1 KiB
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.
|
|
*/
|
|
|
|
#include "MountingTransaction.h"
|
|
|
|
namespace facebook {
|
|
namespace react {
|
|
|
|
using Revision = MountingTransaction::Revision;
|
|
|
|
MountingTransaction::MountingTransaction(
|
|
SurfaceId surfaceId,
|
|
Revision revision,
|
|
ShadowViewMutationList &&mutations,
|
|
MountingTelemetry telemetry)
|
|
: surfaceId_(surfaceId),
|
|
revision_(revision),
|
|
mutations_(std::move(mutations)),
|
|
telemetry_(std::move(telemetry)) {}
|
|
|
|
ShadowViewMutationList const &MountingTransaction::getMutations() const & {
|
|
return mutations_;
|
|
}
|
|
|
|
ShadowViewMutationList MountingTransaction::getMutations() && {
|
|
return std::move(mutations_);
|
|
}
|
|
|
|
MountingTelemetry const &MountingTransaction::getTelemetry() const {
|
|
return telemetry_;
|
|
}
|
|
|
|
SurfaceId MountingTransaction::getSurfaceId() const {
|
|
return surfaceId_;
|
|
}
|
|
|
|
Revision MountingTransaction::getRevision() const {
|
|
return revision_;
|
|
}
|
|
|
|
} // namespace react
|
|
} // namespace facebook
|