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

Side by Side Diff: Source/WebCore/rendering/RenderBlock.h

Issue 12641003: Merge 144350 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1410/
Patch Set: Created 7 years, 9 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
« no previous file with comments | « Source/WebCore/rendering/PaintInfo.h ('k') | Source/WebCore/rendering/RenderBlock.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) 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) 2007 David Smith (catfish.man@gmail.com) 4 * (C) 2007 David Smith (catfish.man@gmail.com)
5 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All r ights reserved. 5 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All r ights reserved.
6 * 6 *
7 * This library is free software; you can redistribute it and/or 7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public 8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either 9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version. 10 * version 2 of the License, or (at your option) any later version.
(...skipping 500 matching lines...) Expand 10 before | Expand all | Expand 10 after
511 void setDesiredColumnCountAndWidth(int, LayoutUnit); 511 void setDesiredColumnCountAndWidth(int, LayoutUnit);
512 512
513 void computeOverflow(LayoutUnit oldClientAfterEdge, bool recomputeFloats = f alse); 513 void computeOverflow(LayoutUnit oldClientAfterEdge, bool recomputeFloats = f alse);
514 virtual void addOverflowFromChildren(); 514 virtual void addOverflowFromChildren();
515 void addOverflowFromFloats(); 515 void addOverflowFromFloats();
516 void addOverflowFromPositionedObjects(); 516 void addOverflowFromPositionedObjects();
517 void addOverflowFromBlockChildren(); 517 void addOverflowFromBlockChildren();
518 void addOverflowFromInlineChildren(); 518 void addOverflowFromInlineChildren();
519 void addVisualOverflowFromTheme(); 519 void addVisualOverflowFromTheme();
520 520
521 virtual void addFocusRingRects(Vector<IntRect>&, const LayoutPoint&); 521 virtual void addFocusRingRects(Vector<IntRect>&, const LayoutPoint& addition alOffset, const RenderLayerModelObject* paintContainer = 0) OVERRIDE;
522 522
523 #if ENABLE(SVG) 523 #if ENABLE(SVG)
524 // Only used by RenderSVGText, which explicitely overrides RenderBlock::layo utBlock(), do NOT use for anything else. 524 // Only used by RenderSVGText, which explicitely overrides RenderBlock::layo utBlock(), do NOT use for anything else.
525 void forceLayoutInlineChildren() 525 void forceLayoutInlineChildren()
526 { 526 {
527 LayoutUnit repaintLogicalTop = 0; 527 LayoutUnit repaintLogicalTop = 0;
528 LayoutUnit repaintLogicalBottom = 0; 528 LayoutUnit repaintLogicalBottom = 0;
529 clearFloats(); 529 clearFloats();
530 layoutInlineChildren(true, repaintLogicalTop, repaintLogicalBottom); 530 layoutInlineChildren(true, repaintLogicalTop, repaintLogicalBottom);
531 } 531 }
(...skipping 722 matching lines...) Expand 10 before | Expand all | Expand 10 after
1254 static String string(const int value); 1254 static String string(const int value);
1255 }; 1255 };
1256 template<> struct ValueToString<RenderBlock::FloatingObject*> { 1256 template<> struct ValueToString<RenderBlock::FloatingObject*> {
1257 static String string(const RenderBlock::FloatingObject*); 1257 static String string(const RenderBlock::FloatingObject*);
1258 }; 1258 };
1259 #endif 1259 #endif
1260 1260
1261 } // namespace WebCore 1261 } // namespace WebCore
1262 1262
1263 #endif // RenderBlock_h 1263 #endif // RenderBlock_h
OLDNEW
« no previous file with comments | « Source/WebCore/rendering/PaintInfo.h ('k') | Source/WebCore/rendering/RenderBlock.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698