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

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

Issue 1743803002: Rename enums/functions that collide in chromium style in core/style/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@get-names-8
Patch Set: get-names-9: rebase Created 4 years, 10 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/StyleBuilderCustom.cpp
diff --git a/third_party/WebKit/Source/core/css/resolver/StyleBuilderCustom.cpp b/third_party/WebKit/Source/core/css/resolver/StyleBuilderCustom.cpp
index dc71026d6147430ddb81a74ba08954aa996a5917..1cfe2559c8bab22c47062ff7cfb947beebd131a4 100644
--- a/third_party/WebKit/Source/core/css/resolver/StyleBuilderCustom.cpp
+++ b/third_party/WebKit/Source/core/css/resolver/StyleBuilderCustom.cpp
@@ -424,8 +424,8 @@ void StyleBuilderFunctions::applyValueCSSPropertyTextAlign(StyleResolverState& s
void StyleBuilderFunctions::applyInheritCSSPropertyTextIndent(StyleResolverState& state)
{
state.style()->setTextIndent(state.parentStyle()->textIndent());
- state.style()->setTextIndentLine(state.parentStyle()->textIndentLine());
- state.style()->setTextIndentType(state.parentStyle()->textIndentType());
+ state.style()->setTextIndentLine(state.parentStyle()->getTextIndentLine());
+ state.style()->setTextIndentType(state.parentStyle()->getTextIndentType());
}
void StyleBuilderFunctions::applyInitialCSSPropertyTextIndent(StyleResolverState& state)
@@ -560,8 +560,8 @@ void StyleBuilderFunctions::applyInitialCSSPropertyWebkitTextEmphasisStyle(Style
void StyleBuilderFunctions::applyInheritCSSPropertyWebkitTextEmphasisStyle(StyleResolverState& state)
{
- state.style()->setTextEmphasisFill(state.parentStyle()->textEmphasisFill());
- state.style()->setTextEmphasisMark(state.parentStyle()->textEmphasisMark());
+ state.style()->setTextEmphasisFill(state.parentStyle()->getTextEmphasisFill());
+ state.style()->setTextEmphasisMark(state.parentStyle()->getTextEmphasisMark());
state.style()->setTextEmphasisCustomMark(state.parentStyle()->textEmphasisCustomMark());
}
« no previous file with comments | « third_party/WebKit/Source/core/css/resolver/StyleAdjuster.cpp ('k') | third_party/WebKit/Source/core/dom/Document.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698