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

Side by Side Diff: Source/core/xml/XSLStyleSheet.h

Issue 968293002: Fix template angle bracket syntax in xml (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 9 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/xml/XPathStep.cpp ('k') | Source/core/xml/parser/XMLDocumentParser.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 * This file is part of the XSL implementation. 2 * This file is part of the XSL implementation.
3 * 3 *
4 * Copyright (C) 2004, 2006, 2008, 2012 Apple Inc. All rights reserved. 4 * Copyright (C) 2004, 2006, 2008, 2012 Apple Inc. All rights reserved.
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 private: 101 private:
102 XSLStyleSheet(Node* parentNode, const String& originalURL, const KURL& final URL, bool embedded); 102 XSLStyleSheet(Node* parentNode, const String& originalURL, const KURL& final URL, bool embedded);
103 XSLStyleSheet(Document* ownerDocument, Node* styleSheetRootNode, const Strin g& originalURL, const KURL& finalURL, bool embedded); 103 XSLStyleSheet(Document* ownerDocument, Node* styleSheetRootNode, const Strin g& originalURL, const KURL& finalURL, bool embedded);
104 XSLStyleSheet(XSLImportRule* parentImport, const String& originalURL, const KURL& finalURL); 104 XSLStyleSheet(XSLImportRule* parentImport, const String& originalURL, const KURL& finalURL);
105 105
106 RawPtrWillBeMember<Node> m_ownerNode; 106 RawPtrWillBeMember<Node> m_ownerNode;
107 String m_originalURL; 107 String m_originalURL;
108 KURL m_finalURL; 108 KURL m_finalURL;
109 bool m_isDisabled; 109 bool m_isDisabled;
110 110
111 WillBeHeapVector<OwnPtrWillBeMember<XSLImportRule> > m_children; 111 WillBeHeapVector<OwnPtrWillBeMember<XSLImportRule>> m_children;
112 112
113 bool m_embedded; 113 bool m_embedded;
114 bool m_processed; 114 bool m_processed;
115 115
116 xmlDocPtr m_stylesheetDoc; 116 xmlDocPtr m_stylesheetDoc;
117 bool m_stylesheetDocTaken; 117 bool m_stylesheetDocTaken;
118 bool m_compilationFailed; 118 bool m_compilationFailed;
119 119
120 RawPtrWillBeMember<XSLStyleSheet> m_parentStyleSheet; 120 RawPtrWillBeMember<XSLStyleSheet> m_parentStyleSheet;
121 RefPtrWillBeMember<Document> m_ownerDocument; 121 RefPtrWillBeMember<Document> m_ownerDocument;
122 }; 122 };
123 123
124 DEFINE_TYPE_CASTS(XSLStyleSheet, StyleSheet, sheet, !sheet->isCSSStyleSheet(), ! sheet.isCSSStyleSheet()); 124 DEFINE_TYPE_CASTS(XSLStyleSheet, StyleSheet, sheet, !sheet->isCSSStyleSheet(), ! sheet.isCSSStyleSheet());
125 125
126 } // namespace blink 126 } // namespace blink
127 127
128 #endif // XSLStyleSheet_h 128 #endif // XSLStyleSheet_h
OLDNEW
« no previous file with comments | « Source/core/xml/XPathStep.cpp ('k') | Source/core/xml/parser/XMLDocumentParser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698