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

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

Issue 2261663002: Disallow cast/implicit conversion from LayoutUnit to int/unsigned (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: - Created 4 years, 4 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/LayoutView.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutView.cpp b/third_party/WebKit/Source/core/layout/LayoutView.cpp
index 00203186e4f225041f3515a9ba7e298f83c62f36..b8bd622890602aaf61762088c988a4fdd0bb4277 100644
--- a/third_party/WebKit/Source/core/layout/LayoutView.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutView.cpp
@@ -834,7 +834,7 @@ LayoutRect LayoutView::backgroundRect(LayoutBox* backgroundLayoutObject) const
IntSize LayoutView::layoutSize(IncludeScrollbarsInRect scrollbarInclusion) const
{
if (shouldUsePrintingLayout())
- return IntSize(size().width(), pageLogicalHeight());
+ return IntSize(size().width().toInt(), pageLogicalHeight().toInt());
if (!m_frameView)
return IntSize();

Powered by Google App Engine
This is Rietveld 408576698