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

Unified Diff: Source/WebCore/dom/ProcessingInstruction.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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/WebCore/dom/DocumentStyleSheetCollection.cpp ('k') | Source/WebCore/dom/ProcessingInstruction.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WebCore/dom/ProcessingInstruction.h
diff --git a/Source/WebCore/dom/ProcessingInstruction.h b/Source/WebCore/dom/ProcessingInstruction.h
index e331e21dfe5e3cd96cb2fe627fe03d147b8b4b61..8b9eb45e6f7e8164471d7c457ef187fc1de289b8 100644
--- a/Source/WebCore/dom/ProcessingInstruction.h
+++ b/Source/WebCore/dom/ProcessingInstruction.h
@@ -49,9 +49,7 @@ public:
void setCSSStyleSheet(PassRefPtr<CSSStyleSheet>);
bool isCSS() const { return m_isCSS; }
-#if ENABLE(XSLT)
bool isXSL() const { return m_isXSL; }
-#endif
private:
ProcessingInstruction(Document*, const String& target, const String& data);
@@ -69,9 +67,7 @@ private:
void checkStyleSheet();
virtual void setCSSStyleSheet(const String& href, const KURL& baseURL, const String& charset, const CachedCSSStyleSheet*);
-#if ENABLE(XSLT)
virtual void setXSLStyleSheet(const String& href, const KURL& baseURL, const String& sheet);
-#endif
bool isLoading() const;
virtual bool sheetLoaded();
@@ -91,9 +87,7 @@ private:
bool m_alternate;
bool m_createdByParser;
bool m_isCSS;
-#if ENABLE(XSLT)
bool m_isXSL;
-#endif
};
} //namespace
« no previous file with comments | « Source/WebCore/dom/DocumentStyleSheetCollection.cpp ('k') | Source/WebCore/dom/ProcessingInstruction.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698