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

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

Issue 2614883007: Change computed style enums to be prefixed with 'k'. (Closed)
Patch Set: Rebase on ToT. 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/LayoutInline.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutInline.cpp b/third_party/WebKit/Source/core/layout/LayoutInline.cpp
index d8abdb06ea2e634593a42aa87e078561dcbcca34..462ca04656c553a6bf3c6e51a76687e234a0678b 100644
--- a/third_party/WebKit/Source/core/layout/LayoutInline.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutInline.cpp
@@ -1156,7 +1156,7 @@ LayoutRect LayoutInline::localVisualRect() const {
if (!alwaysCreateLineBoxes())
return LayoutRect();
- if (style()->visibility() != EVisibility::Visible)
+ if (style()->visibility() != EVisibility::kVisible)
return LayoutRect();
return visualOverflowRect();
@@ -1484,7 +1484,7 @@ void LayoutInline::computeSelfHitTestRects(
void LayoutInline::addAnnotatedRegions(Vector<AnnotatedRegionValue>& regions) {
// Convert the style regions to absolute coordinates.
- if (style()->visibility() != EVisibility::Visible)
+ if (style()->visibility() != EVisibility::kVisible)
return;
if (style()->getDraggableRegionMode() == DraggableRegionNone)
« no previous file with comments | « third_party/WebKit/Source/core/layout/LayoutFlexibleBox.cpp ('k') | third_party/WebKit/Source/core/layout/LayoutListItem.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698