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

Unified Diff: third_party/WebKit/Source/core/frame/FrameView.cpp

Issue 1907213002: Refactor OverlayScrollbarSizeRelevancy into OverlayScrollbarClipBehavior (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Include -> Exclude Created 4 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/frame/FrameView.cpp
diff --git a/third_party/WebKit/Source/core/frame/FrameView.cpp b/third_party/WebKit/Source/core/frame/FrameView.cpp
index 52885bfc60a9f2a87aa0883ea0ded0a05d3b2a6e..a603be0b0d1f1d196811b4bed1f10d72fa3f2107 100644
--- a/third_party/WebKit/Source/core/frame/FrameView.cpp
+++ b/third_party/WebKit/Source/core/frame/FrameView.cpp
@@ -3254,7 +3254,6 @@ void FrameView::windowResizerRectChanged()
bool FrameView::hasOverlayScrollbars() const
{
-
return (m_horizontalScrollbar && m_horizontalScrollbar->isOverlayScrollbar())
|| (m_verticalScrollbar && m_verticalScrollbar->isOverlayScrollbar());
}

Powered by Google App Engine
This is Rietveld 408576698