Searched defs:PropertyWrapper (Results 1 - 1 of 1) sorted by relevance

/external/webkit/Source/WebCore/page/animation/
H A DAnimationBase.cpp278 class PropertyWrapper : public PropertyWrapperGetter<T> { class in namespace:WebCore
280 PropertyWrapper(int prop, T (RenderStyle::*getter)() const, void (RenderStyle::*setter)(T)) function in class:WebCore::PropertyWrapper
296 class PropertyWrapperAcceleratedOpacity : public PropertyWrapper<float> {
299 : PropertyWrapper<float>(CSSPropertyOpacity, &RenderStyle::opacity, &RenderStyle::setOpacity)
314 class PropertyWrapperAcceleratedTransform : public PropertyWrapper<const TransformOperations&> {
317 : PropertyWrapper<const TransformOperations&>(CSSPropertyWebkitTransform, &RenderStyle::transform, &RenderStyle::setTransform)
611 gPropertyWrappers->append(new PropertyWrapper<Length>(CSSPropertyLeft, &RenderStyle::left, &RenderStyle::setLeft));
612 gPropertyWrappers->append(new PropertyWrapper<Length>(CSSPropertyRight, &RenderStyle::right, &RenderStyle::setRight));
613 gPropertyWrappers->append(new PropertyWrapper<Length>(CSSPropertyTop, &RenderStyle::top, &RenderStyle::setTop));
614 gPropertyWrappers->append(new PropertyWrapper<Lengt
[all...]

Completed in 39 milliseconds