⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 184071 in webkit


Ignore:
Timestamp:
May 11, 2015, 2:38:25 AM (11 years ago)
Author:
commit-queue@webkit.org
Message:

[GTK] Reorder Performance class's member initialization sequence
https://bugs.webkit.org/show_bug.cgi?id=144858

Patch by Joonghun Park <jh718.park@samsung.com> on 2015-05-11
Reviewed by Csaba Osztrogonác.

No new tests, no new behaviors.

  • page/Performance.cpp:

(WebCore::Performance::Performance):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r184070 r184071  
     12015-05-11  Joonghun Park  <jh718.park@samsung.com>
     2
     3        [GTK] Reorder Performance class's member initialization sequence
     4        https://bugs.webkit.org/show_bug.cgi?id=144858
     5
     6        Reviewed by Csaba Osztrogonác.
     7
     8        No new tests, no new behaviors.
     9
     10        * page/Performance.cpp:
     11        (WebCore::Performance::Performance):
     12
    1132015-05-11  Zan Dobersek  <zdobersek@igalia.com>
    214
  • trunk/Source/WebCore/page/Performance.cpp

    r183795 r184071  
    5858    , m_resourceTimingBufferSize(defaultResourceTimingBufferSize)
    5959#endif // ENABLE(RESOURCE_TIMING)
     60    , m_referenceTime(frame->document()->loader()->timing().referenceMonotonicTime())
    6061#if ENABLE(USER_TIMING)
    6162    , m_userTiming(0)
    6263#endif // ENABLE(USER_TIMING)
    63     , m_referenceTime(frame->document()->loader()->timing().referenceMonotonicTime())
    6464{
    6565    ASSERT(m_referenceTime);
Note: See TracChangeset for help on using the changeset viewer.