| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Antti Koivisto (koivisto@kde.org) | 2 * Copyright (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. | 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 return m_name == o->m_name | 112 return m_name == o->m_name |
| 113 && m_playState == o->m_playState | 113 && m_playState == o->m_playState |
| 114 && m_property == o->m_property | 114 && m_property == o->m_property |
| 115 && m_mode == o->m_mode | 115 && m_mode == o->m_mode |
| 116 && m_nameSet == o->m_nameSet | 116 && m_nameSet == o->m_nameSet |
| 117 && m_playStateSet == o->m_playStateSet | 117 && m_playStateSet == o->m_playStateSet |
| 118 && m_propertySet == o->m_propertySet | 118 && m_propertySet == o->m_propertySet |
| 119 && m_isNone == o->m_isNone; | 119 && m_isNone == o->m_isNone; |
| 120 } | 120 } |
| 121 | 121 |
| 122 const String& CSSAnimationData::initialAnimationName() | 122 const AtomicString& CSSAnimationData::initialAnimationName() |
| 123 { | 123 { |
| 124 DEFINE_STATIC_LOCAL(String, initialValue, ("none")); | 124 DEFINE_STATIC_LOCAL(const AtomicString, initialValue, ("none")); |
| 125 return initialValue; | 125 return initialValue; |
| 126 } | 126 } |
| 127 | 127 |
| 128 } // namespace WebCore | 128 } // namespace WebCore |
| OLD | NEW |