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

Unified Diff: third_party/WebKit/Source/core/layout/TextAutosizer.cpp

Issue 2660423004: Rename EOverflow values with k prefix. (Closed)
Patch Set: Rebase Created 3 years, 11 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/layout/TextAutosizer.cpp
diff --git a/third_party/WebKit/Source/core/layout/TextAutosizer.cpp b/third_party/WebKit/Source/core/layout/TextAutosizer.cpp
index a684c82c109577d5a75b6fea910debf71666963c..6e082fd93d97a99aa597e837d833952fc895bf03 100644
--- a/third_party/WebKit/Source/core/layout/TextAutosizer.cpp
+++ b/third_party/WebKit/Source/core/layout/TextAutosizer.cpp
@@ -236,7 +236,7 @@ static bool blockHeightConstrained(const LayoutBlock* block) {
// the content is already overflowing before autosizing kicks in.
for (; block; block = block->containingBlock()) {
const ComputedStyle& style = block->styleRef();
- if (style.overflowY() >= EOverflow::Scroll)
+ if (style.overflowY() >= EOverflow::kScroll)
return false;
if (style.height().isSpecified() || style.maxHeight().isSpecified() ||
block->isOutOfFlowPositioned()) {

Powered by Google App Engine
This is Rietveld 408576698