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

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

Issue 143323014: *** DO NOT LAND *** Attempt to understand Regions complexity Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 11 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/RenderReplica.cpp ('k') | Source/core/rendering/RenderTable.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, 2010 Apple Inc. All rights reserv ed. 7 * Copyright (C) 2003, 2004, 2005, 2006, 2009, 2010 Apple Inc. All rights reserv ed.
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 282 matching lines...) Expand 10 before | Expand all | Expand 10 after
293 void invalidateCachedColumns(); 293 void invalidateCachedColumns();
294 294
295 virtual RenderBlock* firstLineBlock() const OVERRIDE; 295 virtual RenderBlock* firstLineBlock() const OVERRIDE;
296 virtual void updateFirstLetter() OVERRIDE; 296 virtual void updateFirstLetter() OVERRIDE;
297 297
298 virtual void updateLogicalWidth() OVERRIDE; 298 virtual void updateLogicalWidth() OVERRIDE;
299 299
300 LayoutUnit convertStyleLogicalWidthToComputedWidth(const Length& styleLogica lWidth, LayoutUnit availableWidth); 300 LayoutUnit convertStyleLogicalWidthToComputedWidth(const Length& styleLogica lWidth, LayoutUnit availableWidth);
301 LayoutUnit convertStyleLogicalHeightToComputedHeight(const Length& styleLogi calHeight); 301 LayoutUnit convertStyleLogicalHeightToComputedHeight(const Length& styleLogi calHeight);
302 302
303 virtual LayoutRect overflowClipRect(const LayoutPoint& location, RenderRegio n*, OverlayScrollbarSizeRelevancy = IgnoreOverlayScrollbarSize) OVERRIDE; 303 virtual LayoutRect overflowClipRect(const LayoutPoint& location, OverlayScro llbarSizeRelevancy = IgnoreOverlayScrollbarSize) OVERRIDE;
304 304
305 virtual void addOverflowFromChildren() OVERRIDE; 305 virtual void addOverflowFromChildren() OVERRIDE;
306 306
307 void subtractCaptionRect(LayoutRect&) const; 307 void subtractCaptionRect(LayoutRect&) const;
308 308
309 void recalcCollapsedBorders(); 309 void recalcCollapsedBorders();
310 void recalcSections() const; 310 void recalcSections() const;
311 void layoutCaption(RenderTableCaption*); 311 void layoutCaption(RenderTableCaption*);
312 312
313 void distributeExtraLogicalHeight(int extraLogicalHeight); 313 void distributeExtraLogicalHeight(int extraLogicalHeight);
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
347 if (m_firstBody) 347 if (m_firstBody)
348 return m_firstBody; 348 return m_firstBody;
349 return m_foot; 349 return m_foot;
350 } 350 }
351 351
352 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderTable, isTable()); 352 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderTable, isTable());
353 353
354 } // namespace WebCore 354 } // namespace WebCore
355 355
356 #endif // RenderTable_h 356 #endif // RenderTable_h
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderReplica.cpp ('k') | Source/core/rendering/RenderTable.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698