| 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());
|
| }
|
|
|