OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google 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 are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 : m_value(value) | 64 : m_value(value) |
65 { | 65 { |
66 ASSERT(m_value); | 66 ASSERT(m_value); |
67 } | 67 } |
68 virtual AnimatableType type() const OVERRIDE { return TypeUnknown; } | 68 virtual AnimatableType type() const OVERRIDE { return TypeUnknown; } |
69 virtual bool equalTo(const AnimatableValue*) const OVERRIDE; | 69 virtual bool equalTo(const AnimatableValue*) const OVERRIDE; |
70 | 70 |
71 const RefPtr<CSSValue> m_value; | 71 const RefPtr<CSSValue> m_value; |
72 }; | 72 }; |
73 | 73 |
74 inline const AnimatableUnknown* toAnimatableUnknown(const AnimatableValue* value
) | 74 DEFINE_ANIMATABLE_VALUE_TYPE_CASTS(AnimatableUnknown, isUnknown()); |
75 { | |
76 ASSERT_WITH_SECURITY_IMPLICATION(value && value->isUnknown()); | |
77 return static_cast<const AnimatableUnknown*>(value); | |
78 } | |
79 | 75 |
80 inline bool AnimatableUnknown::equalTo(const AnimatableValue* value) const | 76 inline bool AnimatableUnknown::equalTo(const AnimatableValue* value) const |
81 { | 77 { |
82 const AnimatableUnknown* unknown = toAnimatableUnknown(value); | 78 const AnimatableUnknown* unknown = toAnimatableUnknown(value); |
83 return m_value == unknown->m_value || m_value->equals(*unknown->m_value); | 79 return m_value == unknown->m_value || m_value->equals(*unknown->m_value); |
84 } | 80 } |
85 | 81 |
86 } // namespace WebCore | 82 } // namespace WebCore |
87 | 83 |
88 #endif // AnimatableUnknown_h | 84 #endif // AnimatableUnknown_h |
OLD | NEW |