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

Unified Diff: third_party/WebKit/Source/core/css/resolver/StyleResolver.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/StyleResolver.cpp
diff --git a/third_party/WebKit/Source/core/css/resolver/StyleResolver.cpp b/third_party/WebKit/Source/core/css/resolver/StyleResolver.cpp
index 3d8ea3d2d68bc195809332385b570621b420f48f..5f55faf972e04159e660c4a9f1cfa59830b4154a 100644
--- a/third_party/WebKit/Source/core/css/resolver/StyleResolver.cpp
+++ b/third_party/WebKit/Source/core/css/resolver/StyleResolver.cpp
@@ -570,13 +570,13 @@ PassRefPtr<ComputedStyle> StyleResolver::StyleForDocument(Document& document) {
: READ_ONLY);
// These are designed to match the user-agent stylesheet values for the
// document element so that the common case doesn't need to create a new
- // ComputedStyle in Document::inheritHtmlAndBodyElementStyles.
+ // ComputedStyle in Document::InheritHtmlAndBodyElementStyles.
document_style->SetDisplay(EDisplay::kBlock);
document_style->SetPosition(EPosition::kAbsolute);
- // Document::inheritHtmlAndBodyElementStyles will set the final overflow
+ // Document::InheritHtmlAndBodyElementStyles will set the final overflow
// style values, but they should initially be auto to avoid premature
- // scrollbar removal in PaintLayerScrollableArea::updateAfterStyleChange.
+ // scrollbar removal in PaintLayerScrollableArea::UpdateAfterStyleChange.
document_style->SetOverflowX(EOverflow::kAuto);
document_style->SetOverflowY(EOverflow::kAuto);
@@ -1009,7 +1009,7 @@ PassRefPtr<ComputedStyle> StyleResolver::PseudoStyleForElement(
}
PassRefPtr<ComputedStyle> StyleResolver::StyleForPage(int page_index) {
- // m_rootElementStyle will be set to the document style.
+ // root_element_style_ will be set to the document style.
StyleResolverState state(GetDocument(), GetDocument().documentElement());
RefPtr<ComputedStyle> style = ComputedStyle::Create();
@@ -1224,7 +1224,7 @@ void StyleResolver::ApplyAnimatedProperties(
const ActiveInterpolationsMap& active_interpolations_map) {
// TODO(alancutter): Don't apply presentation attribute animations here,
// they should instead apply in
- // SVGElement::collectStyleForPresentationAttribute().
+ // SVGElement::CollectStyleForPresentationAttribute().
for (const auto& entry : active_interpolations_map) {
CSSPropertyID property = entry.key.IsCSSProperty()
? entry.key.CssProperty()

Powered by Google App Engine
This is Rietveld 408576698