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

Side by Side Diff: Source/core/rendering/RenderBoxModelObject.cpp

Issue 478923005: Revert of Oilpan: Move more code of RenderObject destructors to destroy(). (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/rendering/RenderBoxModelObject.h ('k') | Source/core/rendering/RenderCounter.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 * (C) 2005 Allan Sandfeld Jensen (kde@carewolf.com) 4 * (C) 2005 Allan Sandfeld Jensen (kde@carewolf.com)
5 * (C) 2005, 2006 Samuel Weinig (sam.weinig@gmail.com) 5 * (C) 2005, 2006 Samuel Weinig (sam.weinig@gmail.com)
6 * Copyright (C) 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. 6 * Copyright (C) 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved.
7 * Copyright (C) 2010 Google Inc. All rights reserved. 7 * Copyright (C) 2010 Google Inc. All rights reserved.
8 * 8 *
9 * This library is free software; you can redistribute it and/or 9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Library General Public 10 * modify it under the terms of the GNU Library General Public
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 return ImageQualityController::imageQualityController()->chooseInterpolation Quality(context, this, image, layer, size); 106 return ImageQualityController::imageQualityController()->chooseInterpolation Quality(context, this, image, layer, size);
107 } 107 }
108 108
109 RenderBoxModelObject::RenderBoxModelObject(ContainerNode* node) 109 RenderBoxModelObject::RenderBoxModelObject(ContainerNode* node)
110 : RenderLayerModelObject(node) 110 : RenderLayerModelObject(node)
111 { 111 {
112 } 112 }
113 113
114 RenderBoxModelObject::~RenderBoxModelObject() 114 RenderBoxModelObject::~RenderBoxModelObject()
115 { 115 {
116 }
117
118 void RenderBoxModelObject::destroy()
119 {
120 ImageQualityController::remove(this); 116 ImageQualityController::remove(this);
121 RenderLayerModelObject::destroy();
122 } 117 }
123 118
124 void RenderBoxModelObject::willBeDestroyed() 119 void RenderBoxModelObject::willBeDestroyed()
125 { 120 {
126 // A continuation of this RenderObject should be destroyed at subclasses. 121 // A continuation of this RenderObject should be destroyed at subclasses.
127 ASSERT(!continuation()); 122 ASSERT(!continuation());
128 123
129 // If this is a first-letter object with a remaining text fragment then the 124 // If this is a first-letter object with a remaining text fragment then the
130 // entry needs to be cleared from the map. 125 // entry needs to be cleared from the map.
131 if (firstLetterRemainingText()) 126 if (firstLetterRemainingText())
(...skipping 2597 matching lines...) Expand 10 before | Expand all | Expand 10 after
2729 ASSERT(!beforeChild || toBoxModelObject == beforeChild->parent()); 2724 ASSERT(!beforeChild || toBoxModelObject == beforeChild->parent());
2730 for (RenderObject* child = startChild; child && child != endChild; ) { 2725 for (RenderObject* child = startChild; child && child != endChild; ) {
2731 // Save our next sibling as moveChildTo will clear it. 2726 // Save our next sibling as moveChildTo will clear it.
2732 RenderObject* nextSibling = child->nextSibling(); 2727 RenderObject* nextSibling = child->nextSibling();
2733 moveChildTo(toBoxModelObject, child, beforeChild, fullRemoveInsert); 2728 moveChildTo(toBoxModelObject, child, beforeChild, fullRemoveInsert);
2734 child = nextSibling; 2729 child = nextSibling;
2735 } 2730 }
2736 } 2731 }
2737 2732
2738 } // namespace blink 2733 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderBoxModelObject.h ('k') | Source/core/rendering/RenderCounter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698