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

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

Issue 333143003: Fix style errors in core/xml/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/xml/XSLImportRule.cpp ('k') | Source/core/xml/XSLStyleSheetLibxslt.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 * 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 *
11 * This library is distributed in the hope that it will be useful, 11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Library General Public License for more details. 14 * Library General Public License for more details.
15 * 15 *
16 * You should have received a copy of the GNU Library General Public License 16 * You should have received a copy of the GNU Library General Public License
17 * along with this library; see the file COPYING.LIB. If not, write to 17 * along with this library; see the file COPYING.LIB. If not, write to
18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19 * Boston, MA 02110-1301, USA. 19 * Boston, MA 02110-1301, USA.
20 * 20 *
21 */ 21 */
22 22
23 #ifndef XSLStyleSheet_h 23 #ifndef XSLStyleSheet_h
24 #define XSLStyleSheet_h 24 #define XSLStyleSheet_h
25 25
26 #include "core/css/StyleSheet.h" 26 #include "core/css/StyleSheet.h"
27 #include "core/dom/ProcessingInstruction.h" 27 #include "core/dom/ProcessingInstruction.h"
28 #include "platform/RuntimeEnabledFeatures.h" 28 #include "platform/RuntimeEnabledFeatures.h"
29 #include "wtf/PassRefPtr.h" 29 #include "wtf/PassRefPtr.h"
30
31 #include <libxml/tree.h> 30 #include <libxml/tree.h>
32 #include <libxslt/transform.h> 31 #include <libxslt/transform.h>
33 32
34 namespace WebCore { 33 namespace WebCore {
35 34
36 class ResourceFetcher; 35 class ResourceFetcher;
37 class XSLImportRule; 36 class XSLImportRule;
38 37
39 class XSLStyleSheet FINAL : public StyleSheet { 38 class XSLStyleSheet FINAL : public StyleSheet {
40 public: 39 public:
41 static PassRefPtrWillBeRawPtr<XSLStyleSheet> create(XSLImportRule* parentImp ort, const String& originalURL, const KURL& finalURL) 40 static PassRefPtrWillBeRawPtr<XSLStyleSheet> create(XSLImportRule* parentImp ort, const String& originalURL, const KURL& finalURL)
42 { 41 {
43 ASSERT(RuntimeEnabledFeatures::xsltEnabled()); 42 ASSERT(RuntimeEnabledFeatures::xsltEnabled());
44 return adoptRefWillBeNoop(new XSLStyleSheet(parentImport, originalURL, f inalURL)); 43 return adoptRefWillBeNoop(new XSLStyleSheet(parentImport, originalURL, f inalURL));
45 } 44 }
46 static PassRefPtrWillBeRawPtr<XSLStyleSheet> create(ProcessingInstruction* p arentNode, const String& originalURL, const KURL& finalURL) 45 static PassRefPtrWillBeRawPtr<XSLStyleSheet> create(ProcessingInstruction* p arentNode, const String& originalURL, const KURL& finalURL)
47 { 46 {
48 ASSERT(RuntimeEnabledFeatures::xsltEnabled()); 47 ASSERT(RuntimeEnabledFeatures::xsltEnabled());
49 return adoptRefWillBeNoop(new XSLStyleSheet(parentNode, originalURL, fin alURL, false)); 48 return adoptRefWillBeNoop(new XSLStyleSheet(parentNode, originalURL, fin alURL, false));
50 } 49 }
51 static PassRefPtrWillBeRawPtr<XSLStyleSheet> createEmbedded(ProcessingInstru ction* parentNode, const KURL& finalURL) 50 static PassRefPtrWillBeRawPtr<XSLStyleSheet> createEmbedded(ProcessingInstru ction* parentNode, const KURL& finalURL)
52 { 51 {
53 ASSERT(RuntimeEnabledFeatures::xsltEnabled()); 52 ASSERT(RuntimeEnabledFeatures::xsltEnabled());
54 return adoptRefWillBeNoop(new XSLStyleSheet(parentNode, finalURL.string( ), finalURL, true)); 53 return adoptRefWillBeNoop(new XSLStyleSheet(parentNode, finalURL.string( ), finalURL, true));
55 } 54 }
56 55
57 // Taking an arbitrary node is unsafe, because owner node pointer can become stale. 56 // Taking an arbitrary node is unsafe, because owner node pointer can become
58 // XSLTProcessor ensures that the stylesheet doesn't outlive its parent, in part by not exposing it to JavaScript. 57 // stale. XSLTProcessor ensures that the stylesheet doesn't outlive its
58 // parent, in part by not exposing it to JavaScript.
59 static PassRefPtrWillBeRawPtr<XSLStyleSheet> createForXSLTProcessor(Node* pa rentNode, const String& originalURL, const KURL& finalURL) 59 static PassRefPtrWillBeRawPtr<XSLStyleSheet> createForXSLTProcessor(Node* pa rentNode, const String& originalURL, const KURL& finalURL)
60 { 60 {
61 ASSERT(RuntimeEnabledFeatures::xsltEnabled()); 61 ASSERT(RuntimeEnabledFeatures::xsltEnabled());
62 return adoptRefWillBeNoop(new XSLStyleSheet(parentNode, originalURL, fin alURL, false)); 62 return adoptRefWillBeNoop(new XSLStyleSheet(parentNode, originalURL, fin alURL, false));
63 } 63 }
64 64
65 virtual ~XSLStyleSheet(); 65 virtual ~XSLStyleSheet();
66 66
67 bool parseString(const String&); 67 bool parseString(const String&);
68 68
69 void checkLoaded(); 69 void checkLoaded();
70 70
71 const KURL& finalURL() const { return m_finalURL; } 71 const KURL& finalURL() const { return m_finalURL; }
72 72
73 void loadChildSheets(); 73 void loadChildSheets();
74 void loadChildSheet(const String& href); 74 void loadChildSheet(const String& href);
75 75
76 ResourceFetcher* fetcher(); 76 ResourceFetcher* fetcher();
77 77
78 Document* ownerDocument(); 78 Document* ownerDocument();
79 virtual XSLStyleSheet* parentStyleSheet() const OVERRIDE { return m_parentSt yleSheet; } 79 virtual XSLStyleSheet* parentStyleSheet() const OVERRIDE { return m_parentSt yleSheet; }
80 void setParentStyleSheet(XSLStyleSheet* parent); 80 void setParentStyleSheet(XSLStyleSheet*);
81 81
82 xmlDocPtr document(); 82 xmlDocPtr document();
83 xsltStylesheetPtr compileStyleSheet(); 83 xsltStylesheetPtr compileStyleSheet();
84 xmlDocPtr locateStylesheetSubResource(xmlDocPtr parentDoc, const xmlChar* ur i); 84 xmlDocPtr locateStylesheetSubResource(xmlDocPtr parentDoc, const xmlChar* ur i);
85 85
86 void clearDocuments(); 86 void clearDocuments();
87 87
88 void markAsProcessed(); 88 void markAsProcessed();
89 bool processed() const { return m_processed; } 89 bool processed() const { return m_processed; }
90 90
(...skipping 29 matching lines...) Expand all
120 bool m_compilationFailed; 120 bool m_compilationFailed;
121 121
122 RawPtrWillBeMember<XSLStyleSheet> m_parentStyleSheet; 122 RawPtrWillBeMember<XSLStyleSheet> m_parentStyleSheet;
123 }; 123 };
124 124
125 DEFINE_TYPE_CASTS(XSLStyleSheet, StyleSheet, sheet, !sheet->isCSSStyleSheet(), ! sheet.isCSSStyleSheet()); 125 DEFINE_TYPE_CASTS(XSLStyleSheet, StyleSheet, sheet, !sheet->isCSSStyleSheet(), ! sheet.isCSSStyleSheet());
126 126
127 } // namespace WebCore 127 } // namespace WebCore
128 128
129 #endif // XSLStyleSheet_h 129 #endif // XSLStyleSheet_h
OLDNEW
« no previous file with comments | « Source/core/xml/XSLImportRule.cpp ('k') | Source/core/xml/XSLStyleSheetLibxslt.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698