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

Unified Diff: third_party/WebKit/Source/core/paint/PaintLayer.cpp

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/paint/PaintLayer.cpp
diff --git a/third_party/WebKit/Source/core/paint/PaintLayer.cpp b/third_party/WebKit/Source/core/paint/PaintLayer.cpp
index b9dff6b0cf62949e567b8dd4a8dda05f3a955203..8d9d9ae04871afa1401b501dc5e61796c3af7d8d 100644
--- a/third_party/WebKit/Source/core/paint/PaintLayer.cpp
+++ b/third_party/WebKit/Source/core/paint/PaintLayer.cpp
@@ -102,7 +102,7 @@ struct SameSizeAsPaintLayer : DisplayItemClient {
void* pointers[9];
LayoutUnit layoutUnits[4];
IntSize size;
- OwnPtrWillBePersistent<PaintLayerScrollableArea> scrollableArea;
+ Persistent<PaintLayerScrollableArea> scrollableArea;
struct {
IntRect rect;
void* pointers[2];
@@ -2581,7 +2581,7 @@ FilterOperations computeFilterOperationsHandleReferenceFilters(const FilterOpera
continue;
ReferenceFilterOperation& referenceOperation = toReferenceFilterOperation(*filterOperation);
// FIXME: Cache the Filter if it didn't change.
- RefPtrWillBeRawPtr<Filter> referenceFilter = ReferenceFilterBuilder::build(effectiveZoom, toElement(enclosingNode), nullptr, referenceOperation);
+ RawPtr<Filter> referenceFilter = ReferenceFilterBuilder::build(effectiveZoom, toElement(enclosingNode), nullptr, referenceOperation);
referenceOperation.setFilter(referenceFilter.release());
}
}

Powered by Google App Engine
This is Rietveld 408576698