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

Unified Diff: Source/core/css/CSSParserValues.h

Issue 212123002: Unship '::-webkit-distributed(...)' functional pseudo element. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased Created 6 years, 9 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/css/CSSParserValues.h
diff --git a/Source/core/css/CSSParserValues.h b/Source/core/css/CSSParserValues.h
index 60adabc0ba899572dc49a3df7933c31e815aec91..76440a8cb25e0915b394bd22780b17bdcde9fc2c 100644
--- a/Source/core/css/CSSParserValues.h
+++ b/Source/core/css/CSSParserValues.h
@@ -229,10 +229,6 @@ public:
void adoptSelectorVector(Vector<OwnPtr<CSSParserSelector> >& selectorVector);
- CSSParserSelector* functionArgumentSelector() const { return m_functionArgumentSelector; }
- void setFunctionArgumentSelector(CSSParserSelector* selector) { m_functionArgumentSelector = selector; }
- bool isDistributedPseudoElement() const { return m_selector->isDistributedPseudoElement(); }
- CSSParserSelector* findDistributedPseudoElementSelector() const;
bool hasHostPseudoSelector() const;
bool isContentPseudoElement() const { return m_selector->isContentPseudoElement(); }
@@ -253,7 +249,6 @@ public:
private:
OwnPtr<CSSSelector> m_selector;
OwnPtr<CSSParserSelector> m_tagHistory;
- CSSParserSelector* m_functionArgumentSelector;
};
inline bool CSSParserSelector::hasShadowPseudo() const

Powered by Google App Engine
This is Rietveld 408576698