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

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 oilpan build 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
Index: Source/core/dom/Document.h
diff --git a/Source/core/dom/Document.h b/Source/core/dom/Document.h
index da551a8e9dd227caabc52456d24cfe7b4838c2a2..204a580fd6d1e4dc71408ee3ad0c53afccf3f051 100644
--- a/Source/core/dom/Document.h
+++ b/Source/core/dom/Document.h
@@ -827,10 +827,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(); }
@@ -1287,7 +1283,6 @@ private:
WillBeHeapVector<RefPtrWillBeMember<HTMLScriptElement>> m_currentScriptStack;
OwnPtr<TransformSource> m_transformSource;
- RefPtrWillBeMember<Document> m_transformSourceDocument;
String m_xmlEncoding;
String m_xmlVersion;

Powered by Google App Engine
This is Rietveld 408576698