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

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

Issue 2812743003: Rename cleanup in comments in css/ directory. (Closed)
Patch Set: Created 3 years, 8 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/CSSSelector.h
diff --git a/third_party/WebKit/Source/core/css/CSSSelector.h b/third_party/WebKit/Source/core/css/CSSSelector.h
index 94718e5e2bfa8b02f845e6c9d2e8c7df66df6ec9..23d9d2750b59893e9984c461434ada957235cd7c 100644
--- a/third_party/WebKit/Source/core/css/CSSSelector.h
+++ b/third_party/WebKit/Source/core/css/CSSSelector.h
@@ -38,7 +38,7 @@ class CSSSelectorList;
// representative list of selectors is in CSSSelectorTest; run it in a debug
// build to see useful debugging output.
//
-// ** tagHistory() and relation():
+// ** TagHistory() and Relation():
//
// Selectors are represented as a linked list of simple selectors (defined more
// or less according to
@@ -47,11 +47,11 @@ class CSSSelectorList;
// returns the relationship of the current simple selector to the one in
// tagHistory(). For example, the CSS selector .a.b #c is represented as:
//
-// selectorText(): .a.b #c
-// --> (relation == Descendant)
-// selectorText(): .a.b
-// --> (relation == SubSelector)
-// selectorText(): .b
+// SelectorText(): .a.b #c
+// --> (relation == kDescendant)
+// SelectorText(): .a.b
+// --> (relation == kSubSelector)
+// SelectorText(): .b
//
// The order of tagHistory() varies depending on the situation.
// * Relations using combinators

Powered by Google App Engine
This is Rietveld 408576698