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

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

Issue 241713002: Remove some dead code from rendering/ folder (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 8 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/RenderBlock.cpp ('k') | Source/core/rendering/RenderBlockFlow.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-2013 Apple Inc. All rights reserved. 5 * Copyright (C) 2003-2013 Apple Inc. All rights reserved.
6 * Copyright (C) Research In Motion Limited 2010. All rights reserved. 6 * Copyright (C) Research In Motion Limited 2010. All rights reserved.
7 * Copyright (C) 2013 Google Inc. All rights reserved. 7 * Copyright (C) 2013 Google Inc. All rights reserved.
8 * 8 *
9 * Redistribution and use in source and binary forms, with or without 9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are 10 * modification, are permitted provided that the following conditions are
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 class LineBreaker; 47 class LineBreaker;
48 class LineWidth; 48 class LineWidth;
49 class RenderMultiColumnFlowThread; 49 class RenderMultiColumnFlowThread;
50 50
51 class RenderBlockFlow : public RenderBlock { 51 class RenderBlockFlow : public RenderBlock {
52 public: 52 public:
53 explicit RenderBlockFlow(ContainerNode*); 53 explicit RenderBlockFlow(ContainerNode*);
54 virtual ~RenderBlockFlow(); 54 virtual ~RenderBlockFlow();
55 55
56 static RenderBlockFlow* createAnonymous(Document*); 56 static RenderBlockFlow* createAnonymous(Document*);
57 RenderBlockFlow* createAnonymousBlockFlow() const;
58 57
59 virtual bool isRenderBlockFlow() const OVERRIDE FINAL { return true; } 58 virtual bool isRenderBlockFlow() const OVERRIDE FINAL { return true; }
60 59
61 virtual void layoutBlock(bool relayoutChildren) OVERRIDE; 60 virtual void layoutBlock(bool relayoutChildren) OVERRIDE;
62 61
63 virtual void computeOverflow(LayoutUnit oldClientAfterEdge, bool recomputeFl oats = false) OVERRIDE; 62 virtual void computeOverflow(LayoutUnit oldClientAfterEdge, bool recomputeFl oats = false) OVERRIDE;
64 virtual void deleteLineBoxTree() OVERRIDE FINAL; 63 virtual void deleteLineBoxTree() OVERRIDE FINAL;
65 64
66 LayoutUnit availableLogicalWidthForLine(LayoutUnit position, bool shouldInde ntText, LayoutUnit logicalHeight = 0) const 65 LayoutUnit availableLogicalWidthForLine(LayoutUnit position, bool shouldInde ntText, LayoutUnit logicalHeight = 0) const
67 { 66 {
(...skipping 426 matching lines...) Expand 10 before | Expand all | Expand 10 after
494 493
495 // END METHODS DEFINED IN RenderBlockLineLayout 494 // END METHODS DEFINED IN RenderBlockLineLayout
496 495
497 }; 496 };
498 497
499 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderBlockFlow, isRenderBlockFlow()); 498 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderBlockFlow, isRenderBlockFlow());
500 499
501 } // namespace WebCore 500 } // namespace WebCore
502 501
503 #endif // RenderBlockFlow_h 502 #endif // RenderBlockFlow_h
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderBlock.cpp ('k') | Source/core/rendering/RenderBlockFlow.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698