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

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

Issue 365873002: Implement a part of ProcessingInstruction by using PrivateScript (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Use PrivateScript to invoke XSLTransform Created 6 years, 4 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
Index: Source/core/dom/StyleEngine.h
diff --git a/Source/core/dom/StyleEngine.h b/Source/core/dom/StyleEngine.h
index 2890f003e5579b6d76af59f54283300a9fc162a6..702e4c175d649992bc846e16f2cdd8b93366ae3b 100644
--- a/Source/core/dom/StyleEngine.h
+++ b/Source/core/dom/StyleEngine.h
@@ -88,8 +88,6 @@ public:
void removeStyleSheetCandidateNode(Node*, ContainerNode* scopingNode, TreeScope&);
void modifiedStyleSheetCandidateNode(Node*);
void enableExitTransitionStylesheets();
- void addXSLStyleSheet(ProcessingInstruction*, bool createdByParser);
- void removeXSLStyleSheet(ProcessingInstruction*);
void invalidateInjectedStyleSheetCache();
void updateInjectedStyleSheetCache() const;
@@ -186,7 +184,6 @@ private:
TreeScopeStyleSheetCollection* styleSheetCollectionFor(TreeScope&);
bool shouldUpdateDocumentStyleSheetCollection(StyleResolverUpdateMode) const;
bool shouldUpdateShadowTreeStyleSheetCollection(StyleResolverUpdateMode) const;
- bool shouldApplyXSLTransform() const;
void markTreeScopeDirty(TreeScope&);
@@ -255,8 +252,6 @@ private:
WillBeHeapHashMap<AtomicString, RawPtrWillBeMember<StyleSheetContents> > m_textToSheetCache;
WillBeHeapHashMap<RawPtrWillBeMember<StyleSheetContents>, AtomicString> m_sheetToTextCache;
-
- RefPtrWillBeMember<ProcessingInstruction> m_xslStyleSheet;
};
}

Powered by Google App Engine
This is Rietveld 408576698