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

Unified Diff: Source/core/page/Page.cpp

Issue 1104243003: Oilpan: put ClientRect(List) on the heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove transition types uses also Created 5 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: Source/core/page/Page.cpp
diff --git a/Source/core/page/Page.cpp b/Source/core/page/Page.cpp
index f74c4a81b66bd3f6027c7956d567392a840bb8f6..0f33b126f91150afafb56fee3671455c801a4829 100644
--- a/Source/core/page/Page.cpp
+++ b/Source/core/page/Page.cpp
@@ -169,7 +169,7 @@ String Page::mainThreadScrollingReasonsAsText()
return String();
}
-PassRefPtrWillBeRawPtr<ClientRectList> Page::nonFastScrollableRects(const LocalFrame* frame)
+ClientRectList* Page::nonFastScrollableRects(const LocalFrame* frame)
{
if (ScrollingCoordinator* scrollingCoordinator = this->scrollingCoordinator()) {
// Hits in compositing/iframes/iframe-composited-scrolling.html

Powered by Google App Engine
This is Rietveld 408576698