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

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

Issue 14383002: Apply FINAL to the RenderObject hierarchy. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase, add OVERRIDEs. Created 7 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/RenderCounter.h ('k') | Source/core/rendering/RenderDetailsMarker.h » ('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 * 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 11 matching lines...) Expand all
22 22
23 #ifndef RenderDeprecatedFlexibleBox_h 23 #ifndef RenderDeprecatedFlexibleBox_h
24 #define RenderDeprecatedFlexibleBox_h 24 #define RenderDeprecatedFlexibleBox_h
25 25
26 #include "RenderBlock.h" 26 #include "RenderBlock.h"
27 27
28 namespace WebCore { 28 namespace WebCore {
29 29
30 class FlexBoxIterator; 30 class FlexBoxIterator;
31 31
32 class RenderDeprecatedFlexibleBox : public RenderBlock { 32 class RenderDeprecatedFlexibleBox FINAL : public RenderBlock {
33 public: 33 public:
34 RenderDeprecatedFlexibleBox(Element*); 34 RenderDeprecatedFlexibleBox(Element*);
35 virtual ~RenderDeprecatedFlexibleBox(); 35 virtual ~RenderDeprecatedFlexibleBox();
36 36
37 static RenderDeprecatedFlexibleBox* createAnonymous(Document*); 37 static RenderDeprecatedFlexibleBox* createAnonymous(Document*);
38 38
39 virtual const char* renderName() const; 39 virtual const char* renderName() const;
40 40
41 virtual void styleWillChange(StyleDifference, const RenderStyle* newStyle) O VERRIDE; 41 virtual void styleWillChange(StyleDifference, const RenderStyle* newStyle) O VERRIDE;
42 42
(...skipping 21 matching lines...) Expand all
64 bool m_stretchingChildren; 64 bool m_stretchingChildren;
65 65
66 private: 66 private:
67 void applyLineClamp(FlexBoxIterator&, bool relayoutChildren); 67 void applyLineClamp(FlexBoxIterator&, bool relayoutChildren);
68 void clearLineClamp(); 68 void clearLineClamp();
69 }; 69 };
70 70
71 } // namespace WebCore 71 } // namespace WebCore
72 72
73 #endif // RenderDeprecatedFlexibleBox_h 73 #endif // RenderDeprecatedFlexibleBox_h
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderCounter.h ('k') | Source/core/rendering/RenderDetailsMarker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698