Bug 1465585: Switch from mozilla::Move to std::move. r=froydnj
This was done automatically replacing: s/mozilla::Move/std::move/ s/ Move(/ std::move(/ s/(Move(/(std::move(/ Removing the 'using mozilla::Move;' lines. And then with a few manual fixups, see the bug for the split series.. MozReview-Commit-ID: Jxze3adipUh
This commit is contained in:
@@ -242,7 +242,7 @@ KeyframeEffect::SetKeyframes(JSContext* aContext,
|
||||
}
|
||||
|
||||
RefPtr<ComputedStyle> style = GetTargetComputedStyle();
|
||||
SetKeyframes(Move(keyframes), style);
|
||||
SetKeyframes(std::move(keyframes), style);
|
||||
}
|
||||
|
||||
|
||||
@@ -255,7 +255,7 @@ KeyframeEffect::SetKeyframes(
|
||||
return;
|
||||
}
|
||||
|
||||
mKeyframes = Move(aKeyframes);
|
||||
mKeyframes = std::move(aKeyframes);
|
||||
KeyframeUtils::DistributeKeyframes(mKeyframes);
|
||||
|
||||
if (mAnimation && mAnimation->IsRelevant()) {
|
||||
@@ -352,7 +352,7 @@ KeyframeEffect::UpdateProperties(const ComputedStyle* aStyle)
|
||||
}
|
||||
}
|
||||
|
||||
mProperties = Move(properties);
|
||||
mProperties = std::move(properties);
|
||||
UpdateEffectSet();
|
||||
|
||||
for (AnimationProperty& property : mProperties) {
|
||||
|
||||
Reference in New Issue
Block a user