| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 4 * Copyright (C) 2003, 2006, 2007, 2009 Apple Inc. All rights reserved. | 4 * Copyright (C) 2003, 2006, 2007, 2009 Apple Inc. All rights reserved. |
| 5 * Copyright (C) 2010 Google Inc. All rights reserved. | 5 * Copyright (C) 2010 Google Inc. All rights reserved. |
| 6 * | 6 * |
| 7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
| 8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
| 9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
| 10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 | 174 |
| 175 bool canHaveBoxInfoInRegion() const { return !isFloating() && !isReplaced()
&& !isInline() && !hasColumns() && !isTableCell() && isBlockFlow(); } | 175 bool canHaveBoxInfoInRegion() const { return !isFloating() && !isReplaced()
&& !isInline() && !hasColumns() && !isTableCell() && isBlockFlow(); } |
| 176 | 176 |
| 177 void contentChanged(ContentChangeType); | 177 void contentChanged(ContentChangeType); |
| 178 bool hasAcceleratedCompositing() const; | 178 bool hasAcceleratedCompositing() const; |
| 179 | 179 |
| 180 bool startTransition(double, CSSPropertyID, const RenderStyle* fromStyle, co
nst RenderStyle* toStyle); | 180 bool startTransition(double, CSSPropertyID, const RenderStyle* fromStyle, co
nst RenderStyle* toStyle); |
| 181 void transitionPaused(double timeOffset, CSSPropertyID); | 181 void transitionPaused(double timeOffset, CSSPropertyID); |
| 182 void transitionFinished(CSSPropertyID); | 182 void transitionFinished(CSSPropertyID); |
| 183 | 183 |
| 184 bool startAnimation(double timeOffset, const Animation*, const KeyframeList&
keyframes); | 184 bool startAnimation(double timeOffset, const PrimitiveAnimation*, const Keyf
rameList& keyframes); |
| 185 void animationPaused(double timeOffset, const String& name); | 185 void animationPaused(double timeOffset, const String& name); |
| 186 void animationFinished(const String& name); | 186 void animationFinished(const String& name); |
| 187 | 187 |
| 188 void suspendAnimations(double time = 0); | 188 void suspendAnimations(double time = 0); |
| 189 | 189 |
| 190 protected: | 190 protected: |
| 191 virtual void willBeDestroyed(); | 191 virtual void willBeDestroyed(); |
| 192 | 192 |
| 193 class BackgroundImageGeometry { | 193 class BackgroundImageGeometry { |
| 194 public: | 194 public: |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 329 ASSERT_WITH_SECURITY_IMPLICATION(!object || object->isBoxModelObject()); | 329 ASSERT_WITH_SECURITY_IMPLICATION(!object || object->isBoxModelObject()); |
| 330 return static_cast<const RenderBoxModelObject*>(object); | 330 return static_cast<const RenderBoxModelObject*>(object); |
| 331 } | 331 } |
| 332 | 332 |
| 333 // This will catch anyone doing an unnecessary cast. | 333 // This will catch anyone doing an unnecessary cast. |
| 334 void toRenderBoxModelObject(const RenderBoxModelObject*); | 334 void toRenderBoxModelObject(const RenderBoxModelObject*); |
| 335 | 335 |
| 336 } // namespace WebCore | 336 } // namespace WebCore |
| 337 | 337 |
| 338 #endif // RenderBoxModelObject_h | 338 #endif // RenderBoxModelObject_h |
| OLD | NEW |