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

Side by Side Diff: third_party/WebKit/WebCore/rendering/RenderTableCol.h

Issue 21165: Revert the merge. Mac build is mysteriously broken. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 10 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
OLDNEW
1 /* 1 /*
2 * This file is part of the DOM implementation for KDE. 2 * This file is part of the DOM implementation for KDE.
3 * 3 *
4 * Copyright (C) 1997 Martin Jones (mjones@kde.org) 4 * Copyright (C) 1997 Martin Jones (mjones@kde.org)
5 * (C) 1997 Torben Weis (weis@kde.org) 5 * (C) 1997 Torben Weis (weis@kde.org)
6 * (C) 1998 Waldo Bastian (bastian@kde.org) 6 * (C) 1998 Waldo Bastian (bastian@kde.org)
7 * (C) 1999 Lars Knoll (knoll@kde.org) 7 * (C) 1999 Lars Knoll (knoll@kde.org)
8 * (C) 1999 Antti Koivisto (koivisto@kde.org) 8 * (C) 1999 Antti Koivisto (koivisto@kde.org)
9 * Copyright (C) 2003, 2004, 2005, 2006 Apple Computer, Inc. 9 * Copyright (C) 2003, 2004, 2005, 2006 Apple Computer, Inc.
10 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) 10 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 44
45 virtual const char* renderName() const { return "RenderTableCol"; } 45 virtual const char* renderName() const { return "RenderTableCol"; }
46 virtual bool isTableCol() const { return true; } 46 virtual bool isTableCol() const { return true; }
47 virtual int lineHeight(bool) const { return 0; } 47 virtual int lineHeight(bool) const { return 0; }
48 virtual void updateFromElement(); 48 virtual void updateFromElement();
49 49
50 virtual bool isChildAllowed(RenderObject*, RenderStyle*) const; 50 virtual bool isChildAllowed(RenderObject*, RenderStyle*) const;
51 virtual bool canHaveChildren() const; 51 virtual bool canHaveChildren() const;
52 virtual bool requiresLayer() const { return false; } 52 virtual bool requiresLayer() const { return false; }
53 53
54 virtual IntRect clippedOverflowRectForRepaint(RenderBoxModelObject* repaintC ontainer); 54 virtual IntRect clippedOverflowRectForRepaint(RenderBox* repaintContainer);
55 virtual void imageChanged(WrappedImagePtr, const IntRect* = 0); 55 virtual void imageChanged(WrappedImagePtr, const IntRect* = 0);
56 56
57 int span() const { return m_span; } 57 int span() const { return m_span; }
58 void setSpan(int s) { m_span = s; } 58 void setSpan(int s) { m_span = s; }
59 59
60 private: 60 private:
61 RenderObjectChildList m_children; 61 RenderObjectChildList m_children;
62 int m_span; 62 int m_span;
63 }; 63 };
64 64
65 } 65 }
66 66
67 #endif 67 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/WebCore/rendering/RenderTableCell.cpp ('k') | third_party/WebKit/WebCore/rendering/RenderTableCol.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698