| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006 Apple Computer, Inc. | 2 * Copyright (C) 2006 Apple Computer, Inc. |
| 3 * Copyright (C) 2006 Alexander Kellett <lypanov@kde.org> | 3 * Copyright (C) 2006 Alexander Kellett <lypanov@kde.org> |
| 4 * Copyright (C) 2006 Oliver Hunt <ojh16@student.canterbury.ac.nz> | 4 * Copyright (C) 2006 Oliver Hunt <ojh16@student.canterbury.ac.nz> |
| 5 * Copyright (C) 2007 Nikolas Zimmermann <zimmermann@kde.org> | 5 * Copyright (C) 2007 Nikolas Zimmermann <zimmermann@kde.org> |
| 6 * Copyright (C) 2008 Rob Buis <buis@kde.org> | 6 * Copyright (C) 2008 Rob Buis <buis@kde.org> |
| 7 * Copyright (C) 2009 Dirk Schulze <krit@webkit.org> | 7 * Copyright (C) 2009 Dirk Schulze <krit@webkit.org> |
| 8 * Copyright (C) Research In Motion Limited 2010-2012. All rights reserved. | 8 * Copyright (C) Research In Motion Limited 2010-2012. All rights reserved. |
| 9 * Copyright (C) 2012 Google Inc. | 9 * Copyright (C) 2012 Google Inc. |
| 10 * | 10 * |
| (...skipping 378 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 389 void LayoutSVGText::removeChild(LayoutObject* child) | 389 void LayoutSVGText::removeChild(LayoutObject* child) |
| 390 { | 390 { |
| 391 SVGResourcesCache::clientWillBeRemovedFromTree(child); | 391 SVGResourcesCache::clientWillBeRemovedFromTree(child); |
| 392 subtreeChildWillBeRemoved(); | 392 subtreeChildWillBeRemoved(); |
| 393 | 393 |
| 394 LayoutSVGBlock::removeChild(child); | 394 LayoutSVGBlock::removeChild(child); |
| 395 } | 395 } |
| 396 | 396 |
| 397 void LayoutSVGText::invalidateTreeIfNeeded(const PaintInvalidationState& paintIn
validationState) | 397 void LayoutSVGText::invalidateTreeIfNeeded(const PaintInvalidationState& paintIn
validationState) |
| 398 { | 398 { |
| 399 ASSERT(!needsLayout()); | 399 // TODO(wangxianzhu): Verify if the inherited LayoutBoxModelObject::invalida
teTreeIfNeeded() |
| 400 | 400 // is applicable here. If yes, remove this overriding method. |
| 401 if (!shouldCheckForPaintInvalidation(paintInvalidationState)) | 401 LayoutObject::invalidateTreeIfNeeded(paintInvalidationState); |
| 402 return; | |
| 403 | |
| 404 PaintInvalidationState newPaintInvalidationState(paintInvalidationState, *th
is); | |
| 405 PaintInvalidationReason reason = invalidatePaintIfNeeded(newPaintInvalidatio
nState); | |
| 406 clearPaintInvalidationFlags(newPaintInvalidationState); | |
| 407 | |
| 408 newPaintInvalidationState.updateForChildren(reason); | |
| 409 invalidatePaintOfSubtreesIfNeeded(newPaintInvalidationState); | |
| 410 } | 402 } |
| 411 | 403 |
| 412 } // namespace blink | 404 } // namespace blink |
| OLD | NEW |