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

Side by Side Diff: Source/WebCore/xml/XMLTreeViewer.h

Issue 14113007: Remove the ENABLE_XSLT compile-time flag. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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/WebCore/xml/XMLErrors.cpp ('k') | Source/WebCore/xml/XMLTreeViewer.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) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 Google Inc. 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 are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 10 *
(...skipping 11 matching lines...) Expand all
22 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 22 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */ 27 */
28 28
29 #ifndef XMLTreeViewer_h 29 #ifndef XMLTreeViewer_h
30 #define XMLTreeViewer_h 30 #define XMLTreeViewer_h
31 31
32 #if ENABLE(XSLT)
33
34 namespace WebCore { 32 namespace WebCore {
35 33
36 class Document; 34 class Document;
37 35
38 class XMLTreeViewer { 36 class XMLTreeViewer {
39 public: 37 public:
40 explicit XMLTreeViewer(Document*); 38 explicit XMLTreeViewer(Document*);
41 virtual ~XMLTreeViewer() {}; 39 virtual ~XMLTreeViewer() {};
42 40
43 bool hasNoStyleInformation() const; 41 bool hasNoStyleInformation() const;
44 void transformDocumentToTreeView(); 42 void transformDocumentToTreeView();
45 43
46 private: 44 private:
47 Document* m_document; 45 Document* m_document;
48 }; 46 };
49 47
50 } // namespace WebCore 48 } // namespace WebCore
51 49
52 #endif // ENABLE(XSLT)
53 #endif // XMLTreeViewer_h 50 #endif // XMLTreeViewer_h
OLDNEW
« no previous file with comments | « Source/WebCore/xml/XMLErrors.cpp ('k') | Source/WebCore/xml/XMLTreeViewer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698