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

Side by Side Diff: Source/core/layout/LayoutDeprecatedFlexibleBox.h

Issue 1106693002: Move the anonymous decoration to decoratedName. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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
OLDNEW
1 /* 1 /*
2 * This file is part of the render object implementation for KHTML. 2 * This file is part of the render object implementation for KHTML.
3 * 3 *
4 * Copyright (C) 2003 Apple Computer, Inc. 4 * Copyright (C) 2003 Apple Computer, Inc.
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 16 matching lines...) Expand all
27 27
28 namespace blink { 28 namespace blink {
29 29
30 class FlexBoxIterator; 30 class FlexBoxIterator;
31 31
32 class LayoutDeprecatedFlexibleBox final : public LayoutBlock { 32 class LayoutDeprecatedFlexibleBox final : public LayoutBlock {
33 public: 33 public:
34 LayoutDeprecatedFlexibleBox(Element&); 34 LayoutDeprecatedFlexibleBox(Element&);
35 virtual ~LayoutDeprecatedFlexibleBox(); 35 virtual ~LayoutDeprecatedFlexibleBox();
36 36
37 virtual const char* name() const override; 37 virtual const char* name() const override { return "LayoutDeprecatedFlexible Box"; }
38 38
39 virtual void styleWillChange(StyleDifference, const ComputedStyle& newStyle) override; 39 virtual void styleWillChange(StyleDifference, const ComputedStyle& newStyle) override;
40 40
41 virtual void layoutBlock(bool relayoutChildren) override; 41 virtual void layoutBlock(bool relayoutChildren) override;
42 void layoutHorizontalBox(bool relayoutChildren); 42 void layoutHorizontalBox(bool relayoutChildren);
43 void layoutVerticalBox(bool relayoutChildren); 43 void layoutVerticalBox(bool relayoutChildren);
44 44
45 virtual bool isDeprecatedFlexibleBox() const override { return true; } 45 virtual bool isDeprecatedFlexibleBox() const override { return true; }
46 bool isStretchingChildren() const { return m_stretchingChildren; } 46 bool isStretchingChildren() const { return m_stretchingChildren; }
47 virtual bool canCollapseAnonymousBlockChild() const override { return false; } 47 virtual bool canCollapseAnonymousBlockChild() const override { return false; }
(...skipping 13 matching lines...) Expand all
61 void clearLineClamp(); 61 void clearLineClamp();
62 62
63 bool m_stretchingChildren; 63 bool m_stretchingChildren;
64 }; 64 };
65 65
66 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutDeprecatedFlexibleBox, isDeprecatedFlexibl eBox()); 66 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutDeprecatedFlexibleBox, isDeprecatedFlexibl eBox());
67 67
68 } // namespace blink 68 } // namespace blink
69 69
70 #endif // LayoutDeprecatedFlexibleBox_h 70 #endif // LayoutDeprecatedFlexibleBox_h
OLDNEW
« no previous file with comments | « Source/core/layout/LayoutBlockFlow.cpp ('k') | Source/core/layout/LayoutDeprecatedFlexibleBox.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698