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

Unified Diff: third_party/WebKit/Source/core/style/ComputedStyle.h

Issue 2812593005: Rename cleanup in comments in style/ 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/style/ComputedStyle.h
diff --git a/third_party/WebKit/Source/core/style/ComputedStyle.h b/third_party/WebKit/Source/core/style/ComputedStyle.h
index f685e1334d340973b091f0dee7305a9fde70618b..1253de4ff87bc35d97e11ae3af313f75d501084b 100644
--- a/third_party/WebKit/Source/core/style/ComputedStyle.h
+++ b/third_party/WebKit/Source/core/style/ComputedStyle.h
@@ -3281,7 +3281,7 @@ class CORE_EXPORT ComputedStyle : public ComputedStyleBase,
// 'z-index: 0'. The difference of them from normal stacking contexts is that
// they don't determine the stacking of the elements underneath them. (Note:
// There are also other elements treated as stacking context during painting,
- // but not managed in stacks. See ObjectPainter::paintAllPhasesAtomically().)
+ // but not managed in stacks. See ObjectPainter::PaintAllPhasesAtomically().)
void UpdateIsStackingContext(bool is_document_element, bool is_in_top_layer);
bool IsStacked() const {
return IsStackingContext() || GetPosition() != EPosition::kStatic;
@@ -3294,9 +3294,9 @@ class CORE_EXPORT ComputedStyle : public ComputedStyleBase,
bool HasUniquePseudoStyle() const;
bool HasPseudoElementStyle() const;
- // Note: canContainAbsolutePositionObjects should return true if
- // canContainFixedPositionObjects. We currently never use this value
- // directly, always OR'ing it with canContainFixedPositionObjects.
+ // Note: CanContainAbsolutePositionObjects should return true if
+ // CanContainFixedPositionObjects. We currently never use this value
+ // directly, always OR'ing it with CanContainFixedPositionObjects.
bool CanContainAbsolutePositionObjects() const {
return GetPosition() != EPosition::kStatic;
}
@@ -3510,7 +3510,7 @@ class CORE_EXPORT ComputedStyle : public ComputedStyleBase,
}
// Color accessors are all private to make sure callers use
- // visitedDependentColor instead to access them.
+ // VisitedDependentColor instead to access them.
StyleColor BorderLeftColor() const {
return surround_->border_.Left().GetColor();
}
« no previous file with comments | « third_party/WebKit/Source/core/style/CachedUAStyle.h ('k') | third_party/WebKit/Source/core/style/ComputedStyle.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698