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

Side by Side Diff: Source/core/dom/RenderTreeBuilder.h

Issue 812873003: Clean up forward declarations in WebKit/Source (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: style fix Created 6 years 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
« no previous file with comments | « Source/core/dom/AXObjectCache.h ('k') | Source/core/editing/htmlediting.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 * 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) 2001 Dirk Mueller (mueller@kde.org) 4 * (C) 2001 Dirk Mueller (mueller@kde.org)
5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r ights reserved. 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r ights reserved.
6 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/) 6 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/)
7 * Copyright (C) 2011 Google Inc. All rights reserved. 7 * Copyright (C) 2011 Google Inc. All rights reserved.
8 * 8 *
9 * This library is free software; you can redistribute it and/or 9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Library General Public 10 * modify it under the terms of the GNU Library General Public
(...skipping 18 matching lines...) Expand all
29 #include "core/dom/Document.h" 29 #include "core/dom/Document.h"
30 #include "core/dom/FirstLetterPseudoElement.h" 30 #include "core/dom/FirstLetterPseudoElement.h"
31 #include "core/dom/Node.h" 31 #include "core/dom/Node.h"
32 #include "core/dom/NodeRenderingTraversal.h" 32 #include "core/dom/NodeRenderingTraversal.h"
33 #include "core/dom/Text.h" 33 #include "core/dom/Text.h"
34 #include "core/rendering/RenderObject.h" 34 #include "core/rendering/RenderObject.h"
35 #include "wtf/RefPtr.h" 35 #include "wtf/RefPtr.h"
36 36
37 namespace blink { 37 namespace blink {
38 38
39 class ContainerNode;
40 class RenderObject; 39 class RenderObject;
41 class RenderStyle; 40 class RenderStyle;
42 41
43 template <typename NodeType> 42 template <typename NodeType>
44 class RenderTreeBuilder { 43 class RenderTreeBuilder {
45 STACK_ALLOCATED(); 44 STACK_ALLOCATED();
46 protected: 45 protected:
47 RenderTreeBuilder(NodeType& node, RenderObject* renderingParent) 46 RenderTreeBuilder(NodeType& node, RenderObject* renderingParent)
48 : m_node(node) 47 : m_node(node)
49 , m_renderingParent(renderingParent) 48 , m_renderingParent(renderingParent)
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 public: 99 public:
101 RenderTreeBuilderForText(Text& text, RenderObject* renderingParent) 100 RenderTreeBuilderForText(Text& text, RenderObject* renderingParent)
102 : RenderTreeBuilder(text, renderingParent) { } 101 : RenderTreeBuilder(text, renderingParent) { }
103 102
104 void createRenderer(); 103 void createRenderer();
105 }; 104 };
106 105
107 } // namespace blink 106 } // namespace blink
108 107
109 #endif 108 #endif
OLDNEW
« no previous file with comments | « Source/core/dom/AXObjectCache.h ('k') | Source/core/editing/htmlediting.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698