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

Unified Diff: third_party/WebKit/Source/core/css/resolver/StyleResolverState.cpp

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/resolver/StyleResolverState.cpp
diff --git a/third_party/WebKit/Source/core/css/resolver/StyleResolverState.cpp b/third_party/WebKit/Source/core/css/resolver/StyleResolverState.cpp
index d343146b1616a4fe26c2cfc90d85778cf61f7f8d..a6e5200e6d3ae9b1a5296301a2e310f7f73b220e 100644
--- a/third_party/WebKit/Source/core/css/resolver/StyleResolverState.cpp
+++ b/third_party/WebKit/Source/core/css/resolver/StyleResolverState.cpp
@@ -38,7 +38,7 @@ StyleResolverState::StyleResolverState(
: element_context_(element_context),
document_(document),
style_(nullptr),
- // TODO(jchaffraix): We should make m_parentStyle const
+ // TODO(jchaffraix): We should make parent_style_ const
// (https://crbug.com/468152)
parent_style_(const_cast<ComputedStyle*>(parent_style)),
layout_parent_style_(layout_parent_style),
@@ -52,7 +52,7 @@ StyleResolverState::StyleResolverState(
DCHECK(!!parent_style_ == !!layout_parent_style_);
if (!parent_style_) {
- // TODO(jchaffraix): We should make m_parentStyle const
+ // TODO(jchaffraix): We should make parent_style_ const
// (https://crbug.com/468152)
parent_style_ = const_cast<ComputedStyle*>(element_context_.ParentStyle());
}

Powered by Google App Engine
This is Rietveld 408576698