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

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

Issue 335963002: Change LayoutState to be stack-allocated (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix push function to match old behavior... 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
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 21 matching lines...) Expand all
32 #include "core/rendering/style/ShapeValue.h" 32 #include "core/rendering/style/ShapeValue.h"
33 #include "platform/text/TextBreakIterator.h" 33 #include "platform/text/TextBreakIterator.h"
34 #include "platform/text/TextRun.h" 34 #include "platform/text/TextRun.h"
35 #include "wtf/ListHashSet.h" 35 #include "wtf/ListHashSet.h"
36 #include "wtf/OwnPtr.h" 36 #include "wtf/OwnPtr.h"
37 37
38 namespace WebCore { 38 namespace WebCore {
39 39
40 class BasicShape; 40 class BasicShape;
41 class BidiContext; 41 class BidiContext;
42 class LayoutStateMaintainer;
43 class LineLayoutState; 42 class LineLayoutState;
44 class RenderInline; 43 class RenderInline;
45 class RenderText; 44 class RenderText;
46 45
47 struct BidiRun; 46 struct BidiRun;
48 struct PaintInfo; 47 struct PaintInfo;
49 class LineInfo; 48 class LineInfo;
50 class RenderRubyRun; 49 class RenderRubyRun;
51 class WordMeasurement; 50 class WordMeasurement;
52 51
(...skipping 496 matching lines...) Expand 10 before | Expand all | Expand 10 after
549 // FIXME: This is temporary as we move code that accesses block flow 548 // FIXME: This is temporary as we move code that accesses block flow
550 // member variables out of RenderBlock and into RenderBlockFlow. 549 // member variables out of RenderBlock and into RenderBlockFlow.
551 friend class RenderBlockFlow; 550 friend class RenderBlockFlow;
552 }; 551 };
553 552
554 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderBlock, isRenderBlock()); 553 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderBlock, isRenderBlock());
555 554
556 } // namespace WebCore 555 } // namespace WebCore
557 556
558 #endif // RenderBlock_h 557 #endif // RenderBlock_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698