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

Side by Side Diff: Source/core/rendering/RenderTableCol.h

Issue 332543002: Rename Repaint to Paint Invalidation Part 4 (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 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/RenderTableCell.cpp ('k') | Source/core/rendering/RenderTableCol.cpp » ('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) 1997 Martin Jones (mjones@kde.org) 2 * Copyright (C) 1997 Martin Jones (mjones@kde.org)
3 * (C) 1997 Torben Weis (weis@kde.org) 3 * (C) 1997 Torben Weis (weis@kde.org)
4 * (C) 1998 Waldo Bastian (bastian@kde.org) 4 * (C) 1998 Waldo Bastian (bastian@kde.org)
5 * (C) 1999 Lars Knoll (knoll@kde.org) 5 * (C) 1999 Lars Knoll (knoll@kde.org)
6 * (C) 1999 Antti Koivisto (koivisto@kde.org) 6 * (C) 1999 Antti Koivisto (koivisto@kde.org)
7 * Copyright (C) 2003, 2004, 2005, 2006, 2009 Apple Inc. All rights reserved. 7 * Copyright (C) 2003, 2004, 2005, 2006, 2009 Apple Inc. All rights reserved.
8 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) 8 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
9 * 9 *
10 * This library is free software; you can redistribute it and/or 10 * This library is free software; you can redistribute it and/or
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 virtual void updateFromElement() OVERRIDE; 89 virtual void updateFromElement() OVERRIDE;
90 virtual void computePreferredLogicalWidths() OVERRIDE { ASSERT_NOT_REACHED() ; } 90 virtual void computePreferredLogicalWidths() OVERRIDE { ASSERT_NOT_REACHED() ; }
91 91
92 virtual void insertedIntoTree() OVERRIDE; 92 virtual void insertedIntoTree() OVERRIDE;
93 virtual void willBeRemovedFromTree() OVERRIDE; 93 virtual void willBeRemovedFromTree() OVERRIDE;
94 94
95 virtual bool isChildAllowed(RenderObject*, RenderStyle*) const OVERRIDE; 95 virtual bool isChildAllowed(RenderObject*, RenderStyle*) const OVERRIDE;
96 virtual bool canHaveChildren() const OVERRIDE; 96 virtual bool canHaveChildren() const OVERRIDE;
97 virtual LayerType layerTypeRequired() const OVERRIDE { return NoLayer; } 97 virtual LayerType layerTypeRequired() const OVERRIDE { return NoLayer; }
98 98
99 virtual LayoutRect clippedOverflowRectForRepaint(const RenderLayerModelObjec t* repaintContainer) const OVERRIDE; 99 virtual LayoutRect clippedOverflowRectForPaintInvalidation(const RenderLayer ModelObject* paintInvalidationContainer) const OVERRIDE;
100 virtual void imageChanged(WrappedImagePtr, const IntRect* = 0) OVERRIDE; 100 virtual void imageChanged(WrappedImagePtr, const IntRect* = 0) OVERRIDE;
101 101
102 virtual void styleDidChange(StyleDifference, const RenderStyle* oldStyle) OV ERRIDE; 102 virtual void styleDidChange(StyleDifference, const RenderStyle* oldStyle) OV ERRIDE;
103 103
104 RenderTable* table() const; 104 RenderTable* table() const;
105 105
106 RenderObjectChildList m_children; 106 RenderObjectChildList m_children;
107 unsigned m_span; 107 unsigned m_span;
108 }; 108 };
109 109
110 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderTableCol, isRenderTableCol()); 110 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderTableCol, isRenderTableCol());
111 111
112 } 112 }
113 113
114 #endif 114 #endif
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderTableCell.cpp ('k') | Source/core/rendering/RenderTableCol.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698