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

Unified Diff: Source/core/dom/Document.h

Issue 730003002: Refactoring XSLT (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed ASSERT crashes when xsltEnabled() returns false Created 6 years, 1 month 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/core/core.gypi ('k') | Source/core/dom/Document.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/Document.h
diff --git a/Source/core/dom/Document.h b/Source/core/dom/Document.h
index 2ec0e111c0dbcbd91e93cbfbbc2bf85f0fb88623..00b5f305ef5a201996fcb366544384e5c85382bf 100644
--- a/Source/core/dom/Document.h
+++ b/Source/core/dom/Document.h
@@ -824,10 +824,6 @@ public:
void pushCurrentScript(PassRefPtrWillBeRawPtr<HTMLScriptElement>);
void popCurrentScript();
- void applyXSLTransform(ProcessingInstruction* pi);
- PassRefPtrWillBeRawPtr<Document> transformSourceDocument() { return m_transformSourceDocument; }
- void setTransformSourceDocument(Document* doc) { m_transformSourceDocument = doc; }
-
void setTransformSource(PassOwnPtr<TransformSource>);
TransformSource* transformSource() const { return m_transformSource.get(); }
@@ -1284,7 +1280,6 @@ private:
WillBeHeapVector<RefPtrWillBeMember<HTMLScriptElement>> m_currentScriptStack;
OwnPtr<TransformSource> m_transformSource;
- RefPtrWillBeMember<Document> m_transformSourceDocument;
String m_xmlEncoding;
String m_xmlVersion;
« no previous file with comments | « Source/core/core.gypi ('k') | Source/core/dom/Document.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698