Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(315)

Side by Side Diff: third_party/WebKit/Source/core/layout/svg/LayoutSVGText.cpp

Issue 2851453005: Mark some non-spinvalidation methods deprecated, and update paint/README.md (Closed)
Patch Set: - Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 391 matching lines...) Expand 10 before | Expand all | Expand 10 after
402 SubtreeChildWasAdded(); 402 SubtreeChildWasAdded();
403 } 403 }
404 404
405 void LayoutSVGText::RemoveChild(LayoutObject* child) { 405 void LayoutSVGText::RemoveChild(LayoutObject* child) {
406 SVGResourcesCache::ClientWillBeRemovedFromTree(child); 406 SVGResourcesCache::ClientWillBeRemovedFromTree(child);
407 SubtreeChildWillBeRemoved(); 407 SubtreeChildWillBeRemoved();
408 408
409 LayoutSVGBlock::RemoveChild(child); 409 LayoutSVGBlock::RemoveChild(child);
410 } 410 }
411 411
412 void LayoutSVGText::InvalidateTreeIfNeeded( 412 void LayoutSVGText::DeprecatedInvalidateTree(
413 const PaintInvalidationState& paint_invalidation_state) { 413 const PaintInvalidationState& paint_invalidation_state) {
414 // TODO(wangxianzhu): Verify if the inherited 414 // TODO(wangxianzhu): Verify if the inherited
415 // LayoutBoxModelObject::invalidateTreeIfNeeded() 415 // LayoutBoxModelObject::invalidateTreeIfNeeded()
416 // is applicable here. If yes, remove this overriding method. 416 // is applicable here. If yes, remove this overriding method.
417 LayoutObject::InvalidateTreeIfNeeded(paint_invalidation_state); 417 LayoutObject::DeprecatedInvalidateTree(paint_invalidation_state);
418 } 418 }
419 419
420 } // namespace blink 420 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/layout/svg/LayoutSVGText.h ('k') | third_party/WebKit/Source/core/paint/README.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698