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

Side by Side Diff: third_party/WebKit/Source/core/layout/LayoutView.h

Issue 1752043002: Merged FrameView and LayoutBox scrolling in EventHandler. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@invertScrollCustomizationPath
Patch Set: Fixes for layout tests breaks Created 4 years, 9 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * Copyright (C) 2006 Apple Computer, Inc. 3 * Copyright (C) 2006 Apple Computer, Inc.
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
203 // Some LayoutMedias want to know about their viewport visibility for 203 // Some LayoutMedias want to know about their viewport visibility for
204 // crbug.com/487345,402044 . This facility will be removed once those 204 // crbug.com/487345,402044 . This facility will be removed once those
205 // experiments complete. 205 // experiments complete.
206 // TODO(ojan): Merge this with IntersectionObserver once it lands. 206 // TODO(ojan): Merge this with IntersectionObserver once it lands.
207 void registerMediaForPositionChangeNotification(LayoutMedia&); 207 void registerMediaForPositionChangeNotification(LayoutMedia&);
208 void unregisterMediaForPositionChangeNotification(LayoutMedia&); 208 void unregisterMediaForPositionChangeNotification(LayoutMedia&);
209 // Notify all registered LayoutMedias that their position on-screen might 209 // Notify all registered LayoutMedias that their position on-screen might
210 // have changed. visibleRect is the clipping boundary. 210 // have changed. visibleRect is the clipping boundary.
211 void sendMediaPositionChangeNotifications(const IntRect& visibleRect); 211 void sendMediaPositionChangeNotifications(const IntRect& visibleRect);
212 212
213 // The rootLayerScrolls setting will ultimately determine whether FrameView
214 // or PaintLayerScrollableArea handle the scroll.
215 ScrollResult scroll(ScrollGranularity, const FloatSize&) override;
216
213 private: 217 private:
214 void mapLocalToAncestor(const LayoutBoxModelObject* ancestor, TransformState &, MapCoordinatesFlags = ApplyContainerFlip, bool* wasFixed = nullptr, const Pai ntInvalidationState* = nullptr) const override; 218 void mapLocalToAncestor(const LayoutBoxModelObject* ancestor, TransformState &, MapCoordinatesFlags = ApplyContainerFlip, bool* wasFixed = nullptr, const Pai ntInvalidationState* = nullptr) const override;
215 219
216 const LayoutObject* pushMappingToContainer(const LayoutBoxModelObject* ances torToStopAt, LayoutGeometryMap&) const override; 220 const LayoutObject* pushMappingToContainer(const LayoutBoxModelObject* ances torToStopAt, LayoutGeometryMap&) const override;
217 void mapAncestorToLocal(const LayoutBoxModelObject*, TransformState&, MapCoo rdinatesFlags) const override; 221 void mapAncestorToLocal(const LayoutBoxModelObject*, TransformState&, MapCoo rdinatesFlags) const override;
218 void computeSelfHitTestRects(Vector<LayoutRect>&, const LayoutPoint& layerOf fset) const override; 222 void computeSelfHitTestRects(Vector<LayoutRect>&, const LayoutPoint& layerOf fset) const override;
219 223
220 void layoutContent(); 224 void layoutContent();
221 #if ENABLE(ASSERT) 225 #if ENABLE(ASSERT)
222 void checkLayoutState(); 226 void checkLayoutState();
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
303 m_paintInvalidationState->m_cachedOffsetsEnabled = true; 307 m_paintInvalidationState->m_cachedOffsetsEnabled = true;
304 } 308 }
305 private: 309 private:
306 const PaintInvalidationState* m_paintInvalidationState; 310 const PaintInvalidationState* m_paintInvalidationState;
307 bool m_didDisable; 311 bool m_didDisable;
308 }; 312 };
309 313
310 } // namespace blink 314 } // namespace blink
311 315
312 #endif // LayoutView_h 316 #endif // LayoutView_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698