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

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

Issue 347643002: Reduce forward declarations in core/dom (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase against ToT Created 6 years, 6 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
« no previous file with comments | « Source/core/dom/Document.h ('k') | Source/core/dom/DocumentMarkerController.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, 2009 Apple Inc. All rights reserved. 5 * Copyright (C) 2004, 2005, 2006, 2009 Apple Inc. All rights reserved.
6 * 6 *
7 * This library is free software; you can redistribute it and/or 7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public 8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either 9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version. 10 * version 2 of the License, or (at your option) any later version.
(...skipping 11 matching lines...) Expand all
22 */ 22 */
23 23
24 #ifndef DocumentFragment_h 24 #ifndef DocumentFragment_h
25 #define DocumentFragment_h 25 #define DocumentFragment_h
26 26
27 #include "core/dom/ContainerNode.h" 27 #include "core/dom/ContainerNode.h"
28 #include "core/dom/ParserContentPolicy.h" 28 #include "core/dom/ParserContentPolicy.h"
29 29
30 namespace WebCore { 30 namespace WebCore {
31 31
32 class ExecutionContext;
33
34 class DocumentFragment : public ContainerNode { 32 class DocumentFragment : public ContainerNode {
35 public: 33 public:
36 static PassRefPtrWillBeRawPtr<DocumentFragment> create(Document&); 34 static PassRefPtrWillBeRawPtr<DocumentFragment> create(Document&);
37 35
38 void parseHTML(const String&, Element* contextElement, ParserContentPolicy = AllowScriptingContent); 36 void parseHTML(const String&, Element* contextElement, ParserContentPolicy = AllowScriptingContent);
39 bool parseXML(const String&, Element* contextElement, ParserContentPolicy = AllowScriptingContent); 37 bool parseXML(const String&, Element* contextElement, ParserContentPolicy = AllowScriptingContent);
40 38
41 virtual bool canContainRangeEndPoint() const OVERRIDE FINAL { return true; } 39 virtual bool canContainRangeEndPoint() const OVERRIDE FINAL { return true; }
42 virtual bool isTemplateContent() const { return false; } 40 virtual bool isTemplateContent() const { return false; }
43 41
44 protected: 42 protected:
45 DocumentFragment(Document*, ConstructionType = CreateContainer); 43 DocumentFragment(Document*, ConstructionType = CreateContainer);
46 virtual String nodeName() const OVERRIDE FINAL; 44 virtual String nodeName() const OVERRIDE FINAL;
47 45
48 private: 46 private:
49 virtual NodeType nodeType() const OVERRIDE FINAL; 47 virtual NodeType nodeType() const OVERRIDE FINAL;
50 virtual PassRefPtrWillBeRawPtr<Node> cloneNode(bool deep = true) OVERRIDE; 48 virtual PassRefPtrWillBeRawPtr<Node> cloneNode(bool deep = true) OVERRIDE;
51 virtual bool childTypeAllowed(NodeType) const OVERRIDE; 49 virtual bool childTypeAllowed(NodeType) const OVERRIDE;
52 }; 50 };
53 51
54 DEFINE_NODE_TYPE_CASTS(DocumentFragment, isDocumentFragment()); 52 DEFINE_NODE_TYPE_CASTS(DocumentFragment, isDocumentFragment());
55 53
56 } // namespace WebCore 54 } // namespace WebCore
57 55
58 #endif 56 #endif
OLDNEW
« no previous file with comments | « Source/core/dom/Document.h ('k') | Source/core/dom/DocumentMarkerController.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698