OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef RenderParagraph_h | |
6 #define RenderParagraph_h | |
7 | |
8 #include "core/dom/ContainerNode.h" | |
9 #include "core/rendering/RenderBlockFlow.h" | |
10 | |
11 namespace blink { | |
12 | |
13 class ContainerNode; | |
14 | |
15 class RenderParagraph : public RenderBlockFlow { | |
esprehn
2014/11/18 00:20:02
final
ojan
2014/11/18 02:39:37
done
| |
16 public: | |
17 explicit RenderParagraph(ContainerNode*); | |
18 virtual ~RenderParagraph(); | |
19 | |
20 static RenderParagraph* createAnonymous(Document*); | |
esprehn
2014/11/18 00:20:02
take a reference.
ojan
2014/11/18 02:39:37
done
| |
21 | |
22 bool isRenderParagraph() const override { return true; } | |
23 }; | |
24 | |
25 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderParagraph, isRenderParagraph()); | |
26 | |
27 } // namespace blink | |
28 | |
29 #endif // RenderParagraph_h | |
OLD | NEW |