Title: [184071] trunk/Source/WebCore
- Revision
- 184071
- Author
- [email protected]
- Date
- 2015-05-11 02:38:25 -0700 (Mon, 11 May 2015)
Log Message
[GTK] Reorder Performance class's member initialization sequence
https://bugs.webkit.org/show_bug.cgi?id=144858
Patch by Joonghun Park <[email protected]> on 2015-05-11
Reviewed by Csaba Osztrogonác.
No new tests, no new behaviors.
* page/Performance.cpp:
(WebCore::Performance::Performance):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (184070 => 184071)
--- trunk/Source/WebCore/ChangeLog 2015-05-11 08:52:35 UTC (rev 184070)
+++ trunk/Source/WebCore/ChangeLog 2015-05-11 09:38:25 UTC (rev 184071)
@@ -1,3 +1,15 @@
+2015-05-11 Joonghun Park <[email protected]>
+
+ [GTK] Reorder Performance class's member initialization sequence
+ https://bugs.webkit.org/show_bug.cgi?id=144858
+
+ Reviewed by Csaba Osztrogonác.
+
+ No new tests, no new behaviors.
+
+ * page/Performance.cpp:
+ (WebCore::Performance::Performance):
+
2015-05-11 Zan Dobersek <[email protected]>
Reduce TransformationMatrix copies in WebKitCSSMatrix operations
Modified: trunk/Source/WebCore/page/Performance.cpp (184070 => 184071)
--- trunk/Source/WebCore/page/Performance.cpp 2015-05-11 08:52:35 UTC (rev 184070)
+++ trunk/Source/WebCore/page/Performance.cpp 2015-05-11 09:38:25 UTC (rev 184071)
@@ -57,10 +57,10 @@
#if ENABLE(RESOURCE_TIMING)
, m_resourceTimingBufferSize(defaultResourceTimingBufferSize)
#endif // ENABLE(RESOURCE_TIMING)
+ , m_referenceTime(frame->document()->loader()->timing().referenceMonotonicTime())
#if ENABLE(USER_TIMING)
, m_userTiming(0)
#endif // ENABLE(USER_TIMING)
- , m_referenceTime(frame->document()->loader()->timing().referenceMonotonicTime())
{
ASSERT(m_referenceTime);
}
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes