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

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

Issue 15363004: Rename ShadowDescendant to ShadowPseudo. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: sync again Created 7 years, 7 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/core/css/CSSParser.cpp ('k') | Source/core/css/CSSSelector.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSParserValues.h
diff --git a/Source/core/css/CSSParserValues.h b/Source/core/css/CSSParserValues.h
index 5a5ad7e0c95d77d5f6104d9f4f177ff4453edae7..fd1c475a3f3254d4e0da2f1e125d4fd9a97f1e8e 100644
--- a/Source/core/css/CSSParserValues.h
+++ b/Source/core/css/CSSParserValues.h
@@ -211,7 +211,7 @@ public:
bool isCustomPseudoElement() const { return m_selector->isCustomPseudoElement(); }
bool isSimple() const;
- bool hasShadowDescendant() const;
+ bool hasShadowPseudo() const;
CSSParserSelector* tagHistory() const { return m_tagHistory.get(); }
void setTagHistory(PassOwnPtr<CSSParserSelector> selector) { m_tagHistory = selector; }
@@ -226,9 +226,9 @@ private:
CSSParserSelector* m_functionArgumentSelector;
};
-inline bool CSSParserSelector::hasShadowDescendant() const
+inline bool CSSParserSelector::hasShadowPseudo() const
{
- return m_selector->relation() == CSSSelector::ShadowDescendant;
+ return m_selector->relation() == CSSSelector::ShadowPseudo;
}
}
« no previous file with comments | « Source/core/css/CSSParser.cpp ('k') | Source/core/css/CSSSelector.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698