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

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

Issue 739433003: Remove CDATASection (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 5 years, 10 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/dom/ContainerNode.h ('k') | Source/core/dom/Document.cpp » ('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 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org)
6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All r ights reserved. 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All r ights reserved.
7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/) 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t orchmobile.com/)
8 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) 8 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
9 * Copyright (C) 2011 Google Inc. All rights reserved. 9 * Copyright (C) 2011 Google Inc. All rights reserved.
10 * 10 *
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 #include "wtf/OwnPtr.h" 60 #include "wtf/OwnPtr.h"
61 #include "wtf/PassOwnPtr.h" 61 #include "wtf/PassOwnPtr.h"
62 #include "wtf/PassRefPtr.h" 62 #include "wtf/PassRefPtr.h"
63 #include "wtf/WeakPtr.h" 63 #include "wtf/WeakPtr.h"
64 64
65 namespace blink { 65 namespace blink {
66 66
67 class AnimationTimeline; 67 class AnimationTimeline;
68 class AXObjectCache; 68 class AXObjectCache;
69 class Attr; 69 class Attr;
70 class CDATASection;
71 class CSSStyleDeclaration; 70 class CSSStyleDeclaration;
72 class CSSStyleSheet; 71 class CSSStyleSheet;
73 class CanvasRenderingContext2D; 72 class CanvasRenderingContext2D;
74 class CanvasRenderingContext2DOrWebGLRenderingContext; 73 class CanvasRenderingContext2DOrWebGLRenderingContext;
75 class Chrome; 74 class Chrome;
76 class Comment; 75 class Comment;
77 class ConsoleMessage; 76 class ConsoleMessage;
78 class ContextFeatures; 77 class ContextFeatures;
79 class CustomElementMicrotaskRunQueue; 78 class CustomElementMicrotaskRunQueue;
80 class CustomElementRegistrationContext; 79 class CustomElementRegistrationContext;
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
296 295
297 // Returns whether the Document has an AppCache manifest. 296 // Returns whether the Document has an AppCache manifest.
298 bool hasAppCacheManifest() const; 297 bool hasAppCacheManifest() const;
299 298
300 Location* location() const; 299 Location* location() const;
301 300
302 PassRefPtrWillBeRawPtr<Element> createElement(const AtomicString& name, Exce ptionState&); 301 PassRefPtrWillBeRawPtr<Element> createElement(const AtomicString& name, Exce ptionState&);
303 PassRefPtrWillBeRawPtr<DocumentFragment> createDocumentFragment(); 302 PassRefPtrWillBeRawPtr<DocumentFragment> createDocumentFragment();
304 PassRefPtrWillBeRawPtr<Text> createTextNode(const String& data); 303 PassRefPtrWillBeRawPtr<Text> createTextNode(const String& data);
305 PassRefPtrWillBeRawPtr<Comment> createComment(const String& data); 304 PassRefPtrWillBeRawPtr<Comment> createComment(const String& data);
306 PassRefPtrWillBeRawPtr<CDATASection> createCDATASection(const String& data, ExceptionState&);
307 PassRefPtrWillBeRawPtr<ProcessingInstruction> createProcessingInstruction(co nst String& target, const String& data, ExceptionState&); 305 PassRefPtrWillBeRawPtr<ProcessingInstruction> createProcessingInstruction(co nst String& target, const String& data, ExceptionState&);
308 PassRefPtrWillBeRawPtr<Attr> createAttribute(const AtomicString& name, Excep tionState&); 306 PassRefPtrWillBeRawPtr<Attr> createAttribute(const AtomicString& name, Excep tionState&);
309 PassRefPtrWillBeRawPtr<Attr> createAttributeNS(const AtomicString& namespace URI, const AtomicString& qualifiedName, ExceptionState&, bool shouldIgnoreNamesp aceChecks = false); 307 PassRefPtrWillBeRawPtr<Attr> createAttributeNS(const AtomicString& namespace URI, const AtomicString& qualifiedName, ExceptionState&, bool shouldIgnoreNamesp aceChecks = false);
310 PassRefPtrWillBeRawPtr<Node> importNode(Node* importedNode, bool deep, Excep tionState&); 308 PassRefPtrWillBeRawPtr<Node> importNode(Node* importedNode, bool deep, Excep tionState&);
311 PassRefPtrWillBeRawPtr<Element> createElementNS(const AtomicString& namespac eURI, const AtomicString& qualifiedName, ExceptionState&); 309 PassRefPtrWillBeRawPtr<Element> createElementNS(const AtomicString& namespac eURI, const AtomicString& qualifiedName, ExceptionState&);
312 PassRefPtrWillBeRawPtr<Element> createElement(const QualifiedName&, bool cre atedByParser); 310 PassRefPtrWillBeRawPtr<Element> createElement(const QualifiedName&, bool cre atedByParser);
313 311
314 bool regionBasedColumnsEnabled() const; 312 bool regionBasedColumnsEnabled() const;
315 313
316 Element* elementFromPoint(int x, int y) const; 314 Element* elementFromPoint(int x, int y) const;
(...skipping 1114 matching lines...) Expand 10 before | Expand all | Expand 10 after
1431 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true); 1429 DEFINE_TYPE_CASTS(TreeScope, Document, document, true, true);
1432 1430
1433 } // namespace blink 1431 } // namespace blink
1434 1432
1435 #ifndef NDEBUG 1433 #ifndef NDEBUG
1436 // Outside the WebCore namespace for ease of invocation from gdb. 1434 // Outside the WebCore namespace for ease of invocation from gdb.
1437 void showLiveDocumentInstances(); 1435 void showLiveDocumentInstances();
1438 #endif 1436 #endif
1439 1437
1440 #endif // Document_h 1438 #endif // Document_h
OLDNEW
« no previous file with comments | « Source/core/dom/ContainerNode.h ('k') | Source/core/dom/Document.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698