Clean up ForThrottledAnimationFlush stuff.

MozReview-Commit-ID: I6xeHv65nH2
This commit is contained in:
Bobby Holley 2017-07-26 10:00:28 -07:00
parent ce295f6daf
commit 543bbb7b9c
2 changed files with 3 additions and 13 deletions

View file

@ -22,8 +22,6 @@ bitflags! {
const ForReconstruct = 1 << 3,
/// FIXME(bholley): This will go away.
const ForNewlyBoundElement = 1 << 4,
/// FIXME(bholley): This will go away.
const ForThrottledAnimationFlush = 1 << 5,
}
}
@ -52,7 +50,6 @@ pub fn assert_traversal_flags_match() {
ServoTraversalFlags_UnstyledChildrenOnly => UnstyledChildrenOnly,
ServoTraversalFlags_ForReconstruct => ForReconstruct,
ServoTraversalFlags_ForNewlyBoundElement => ForNewlyBoundElement,
ServoTraversalFlags_ForThrottledAnimationFlush => ForThrottledAnimationFlush,
}
}