Changeset 166021 in webkit
- Timestamp:
- Mar 20, 2014, 4:43:33 PM (11 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r166019 r166021 1 2014-03-20 Simon Fraser <simon.fraser@apple.com> 2 3 Fix the iOS build. 4 5 * page/FrameView.cpp: 6 (WebCore::FrameView::willPaintContents): 7 (WebCore::FrameView::didPaintContents): 8 1 9 2014-03-20 Hans Muller <hmuller@adobe.com> 2 10 -
trunk/Source/WebCore/page/FrameView.cpp
r166018 r166021 3482 3482 #if PLATFORM(IOS) 3483 3483 // FIXME: Remove PLATFORM(IOS)-guard once we upstream the iOS changes to MemoryPressureHandler.h. 3484 if ( isTopLevelPainter && memoryPressureHandler().hasReceivedMemoryPressure()) {3484 if (paintingState.isTopLevelPainter && memoryPressureHandler().hasReceivedMemoryPressure()) { 3485 3485 LOG(MemoryPressure, "Under memory pressure: %s", __PRETTY_FUNCTION__); 3486 3486 … … 3531 3531 // If we are low on memory, wipe them out after the paint. 3532 3532 // FIXME: Remove PLATFORM(IOS)-guard once we upstream the iOS changes to MemoryPressureHandler.h. 3533 if ( isTopLevelPainter && memoryPressureHandler().hasReceivedMemoryPressure())3533 if (paintingState.isTopLevelPainter && memoryPressureHandler().hasReceivedMemoryPressure()) 3534 3534 memoryCache()->pruneLiveResources(true); 3535 3535 #endif
Note:
See TracChangeset
for help on using the changeset viewer.