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

Unified Diff: third_party/WebKit/Source/core/css/SelectorChecker.h

Issue 1765933003: style: Rename the PseudoId enum values to CamelCase and prefix them. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: enum-clash-PseudoId: none Created 4 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: third_party/WebKit/Source/core/css/SelectorChecker.h
diff --git a/third_party/WebKit/Source/core/css/SelectorChecker.h b/third_party/WebKit/Source/core/css/SelectorChecker.h
index 2702f6345d06b882c3579f098f3dbe9fe56415d8..2df8e7923707af894a381bec64a9bd07bde10268 100644
--- a/third_party/WebKit/Source/core/css/SelectorChecker.h
+++ b/third_party/WebKit/Source/core/css/SelectorChecker.h
@@ -76,7 +76,7 @@ public:
, previousElement(nullptr)
, scope(nullptr)
, visitedMatchType(visitedMatchType)
- , pseudoId(NOPSEUDO)
+ , pseudoId(PseudoIdNone)
, isSubSelector(false)
, inRightmostCompound(true)
, hasScrollbarPseudo(false)
@@ -101,7 +101,7 @@ public:
struct MatchResult {
STACK_ALLOCATED();
MatchResult()
- : dynamicPseudo(NOPSEUDO)
+ : dynamicPseudo(PseudoIdNone)
, specificity(0) { }
PseudoId dynamicPseudo;
« no previous file with comments | « third_party/WebKit/Source/core/css/PseudoStyleRequest.h ('k') | third_party/WebKit/Source/core/css/SelectorChecker.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698