| Index: sky/engine/core/rendering/RenderParagraph.h
|
| diff --git a/sky/engine/core/rendering/RenderParagraph.h b/sky/engine/core/rendering/RenderParagraph.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..ed7a5525a4487297b1a40b4140294f06475b2b52
|
| --- /dev/null
|
| +++ b/sky/engine/core/rendering/RenderParagraph.h
|
| @@ -0,0 +1,29 @@
|
| +// Copyright 2014 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#ifndef RenderParagraph_h
|
| +#define RenderParagraph_h
|
| +
|
| +#include "core/dom/ContainerNode.h"
|
| +#include "core/rendering/RenderBlockFlow.h"
|
| +
|
| +namespace blink {
|
| +
|
| +class ContainerNode;
|
| +
|
| +class RenderParagraph final : public RenderBlockFlow {
|
| +public:
|
| + explicit RenderParagraph(ContainerNode*);
|
| + virtual ~RenderParagraph();
|
| +
|
| + static RenderParagraph* createAnonymous(Document&);
|
| +
|
| + bool isRenderParagraph() const override { return true; }
|
| +};
|
| +
|
| +DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderParagraph, isRenderParagraph());
|
| +
|
| +} // namespace blink
|
| +
|
| +#endif // RenderParagraph_h
|
|
|