Changeset 166021 in webkit


Ignore:
Timestamp:
Mar 20, 2014, 4:43:33 PM (11 years ago)
Author:
Simon Fraser
Message:

Fix the iOS build.

  • page/FrameView.cpp:

(WebCore::FrameView::willPaintContents):
(WebCore::FrameView::didPaintContents):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r166019 r166021  
     12014-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
    192014-03-20  Hans Muller  <hmuller@adobe.com>
    210
  • trunk/Source/WebCore/page/FrameView.cpp

    r166018 r166021  
    34823482#if PLATFORM(IOS)
    34833483    // 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()) {
    34853485        LOG(MemoryPressure, "Under memory pressure: %s", __PRETTY_FUNCTION__);
    34863486
     
    35313531    // If we are low on memory, wipe them out after the paint.
    35323532    // 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())
    35343534        memoryCache()->pruneLiveResources(true);
    35353535#endif
Note: See TracChangeset for help on using the changeset viewer.