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

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

Issue 1738243002: Removed main-thread one dimensional scrolling paths. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@removeStepFromUserScroll
Patch Set: 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/layout/LayoutEmbeddedObject.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutEmbeddedObject.cpp b/third_party/WebKit/Source/core/layout/LayoutEmbeddedObject.cpp
index 993d00302cdc5d1266589f3fd3a2f34e92c5016b..6c4b14d28b26638299534429a8c2b5754c0e609c 100644
--- a/third_party/WebKit/Source/core/layout/LayoutEmbeddedObject.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutEmbeddedObject.cpp
@@ -156,9 +156,9 @@ PaintInvalidationReason LayoutEmbeddedObject::invalidatePaintIfNeeded(
return reason;
}
-ScrollResultOneDimensional LayoutEmbeddedObject::scroll(ScrollDirectionPhysical direction, ScrollGranularity granularity, float)
+ScrollResult LayoutEmbeddedObject::scroll(ScrollGranularity granularity, const FloatSize&)
{
- return ScrollResultOneDimensional(false);
+ return ScrollResult();
}
CompositingReasons LayoutEmbeddedObject::additionalCompositingReasons() const

Powered by Google App Engine
This is Rietveld 408576698