Changeset 230498 in webkit


Ignore:
Timestamp:
Apr 10, 2018 3:48:49 PM (6 years ago)
Author:
Chris Dumez
Message:

Unreviewed build fix.

  • page/LayoutContext.cpp:

(WebCore::LayoutContext::~LayoutContext):

  • page/LayoutContext.h:
Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r230490 r230498  
     12018-04-10  Chris Dumez  <cdumez@apple.com>
     2
     3        Unreviewed build fix.
     4
     5        * page/LayoutContext.cpp:
     6        (WebCore::LayoutContext::~LayoutContext):
     7        * page/LayoutContext.h:
     8
    192018-04-10  Jeremy Jones  <jeremyj@apple.com>
    210
  • trunk/Source/WebCore/page/LayoutContext.cpp

    r227858 r230498  
    4242#include <wtf/SetForScope.h>
    4343#include <wtf/SystemTracing.h>
     44#include <wtf/text/TextStream.h>
    4445
    4546namespace WebCore {
     
    116117    , m_layoutTimer(*this, &LayoutContext::layoutTimerFired)
    117118    , m_asynchronousTasksTimer(*this, &LayoutContext::runAsynchronousTasks)
     119{
     120}
     121
     122LayoutContext::~LayoutContext()
    118123{
    119124}
  • trunk/Source/WebCore/page/LayoutContext.h

    r224637 r230498  
    4848public:
    4949    LayoutContext(FrameView&);
     50    ~LayoutContext();
    5051
    5152    void layout();
Note: See TracChangeset for help on using the changeset viewer.