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

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

Issue 268803005: Replace SVGDocument by XMLDocument (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add rootElement() variant Created 6 years, 7 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/DOMImplementation.cpp ('k') | Source/core/fetch/DocumentResource.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) 2014 Samsung Electronics. All rights reserved. 2 * Copyright (C) 2014 Samsung Electronics. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * * Redistributions of source code must retain the above copyright 7 * * Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * * Redistributions in binary form must reproduce the above copyright 9 * * Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 13 matching lines...) Expand all
24 */ 24 */
25 25
26 #ifndef XMLDocument_h 26 #ifndef XMLDocument_h
27 #define XMLDocument_h 27 #define XMLDocument_h
28 28
29 #include "core/dom/Document.h" 29 #include "core/dom/Document.h"
30 #include "wtf/PassRefPtr.h" 30 #include "wtf/PassRefPtr.h"
31 31
32 namespace WebCore { 32 namespace WebCore {
33 33
34 class XMLDocument : public Document { 34 class XMLDocument FINAL : public Document {
35 public: 35 public:
36 static PassRefPtr<XMLDocument> create(const DocumentInit& initializer = Docu mentInit()) 36 static PassRefPtr<XMLDocument> create(const DocumentInit& initializer = Docu mentInit())
37 { 37 {
38 return adoptRef(new XMLDocument(initializer, XMLDocumentClass)); 38 return adoptRef(new XMLDocument(initializer, XMLDocumentClass));
39 } 39 }
40 40
41 static PassRefPtr<XMLDocument> createXHTML(const DocumentInit& initializer = DocumentInit()) 41 static PassRefPtr<XMLDocument> createXHTML(const DocumentInit& initializer = DocumentInit())
42 { 42 {
43 return adoptRef(new XMLDocument(initializer, XMLDocumentClass | XHTMLDoc umentClass)); 43 return adoptRef(new XMLDocument(initializer, XMLDocumentClass | XHTMLDoc umentClass));
44 } 44 }
45 45
46 static PassRefPtr<XMLDocument> createSVG(const DocumentInit& initializer = D ocumentInit())
47 {
48 return adoptRef(new XMLDocument(initializer, XMLDocumentClass | SVGDocum entClass));
49 }
50
46 protected: 51 protected:
47 XMLDocument(const DocumentInit&, DocumentClassFlags documentClasses); 52 XMLDocument(const DocumentInit&, DocumentClassFlags documentClasses);
48 }; 53 };
49 54
50 DEFINE_DOCUMENT_TYPE_CASTS(XMLDocument); 55 DEFINE_DOCUMENT_TYPE_CASTS(XMLDocument);
51 56
52 } // namespace WebCore 57 } // namespace WebCore
53 58
54 #endif // XMLDocument_h 59 #endif // XMLDocument_h
OLDNEW
« no previous file with comments | « Source/core/dom/DOMImplementation.cpp ('k') | Source/core/fetch/DocumentResource.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698