| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2007, 2008, 2012 Apple Inc. All rights reserved. | 2 * Copyright (C) 2007, 2008, 2012 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 steps_(steps), | 99 steps_(steps), |
| 100 step_position_(step_position) {} | 100 step_position_(step_position) {} |
| 101 | 101 |
| 102 int steps_; | 102 int steps_; |
| 103 StepsTimingFunction::StepPosition step_position_; | 103 StepsTimingFunction::StepPosition step_position_; |
| 104 }; | 104 }; |
| 105 | 105 |
| 106 DEFINE_CSS_VALUE_TYPE_CASTS(CSSStepsTimingFunctionValue, | 106 DEFINE_CSS_VALUE_TYPE_CASTS(CSSStepsTimingFunctionValue, |
| 107 IsStepsTimingFunctionValue()); | 107 IsStepsTimingFunctionValue()); |
| 108 | 108 |
| 109 class CSSFramesTimingFunctionValue : public CSSValue { |
| 110 public: |
| 111 static CSSFramesTimingFunctionValue* Create(int frames) { |
| 112 return new CSSFramesTimingFunctionValue(frames); |
| 113 } |
| 114 |
| 115 int NumberOfFrames() const { return frames_; } |
| 116 |
| 117 String CustomCSSText() const; |
| 118 |
| 119 bool Equals(const CSSFramesTimingFunctionValue&) const; |
| 120 |
| 121 DEFINE_INLINE_TRACE_AFTER_DISPATCH() { |
| 122 CSSValue::TraceAfterDispatch(visitor); |
| 123 } |
| 124 |
| 125 private: |
| 126 CSSFramesTimingFunctionValue(int frames) |
| 127 : CSSValue(kFramesTimingFunctionClass), frames_(frames) {} |
| 128 |
| 129 int frames_; |
| 130 }; |
| 131 |
| 132 DEFINE_CSS_VALUE_TYPE_CASTS(CSSFramesTimingFunctionValue, |
| 133 IsFramesTimingFunctionValue()); |
| 134 |
| 109 } // namespace blink | 135 } // namespace blink |
| 110 | 136 |
| 111 #endif | 137 #endif |
| OLD | NEW |