Title: [207528] trunk/Source/WebCore
Revision
207528
Author
da...@apple.com
Date
2016-10-19 00:42:56 -0700 (Wed, 19 Oct 2016)

Log Message

2016-10-19  Darin Adler  <da...@apple.com>

Try to fix build on some compilers.

* page/PerformanceUserTiming.cpp: Add back class name; needed by some compiler versions.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (207527 => 207528)


--- trunk/Source/WebCore/ChangeLog	2016-10-19 07:40:28 UTC (rev 207527)
+++ trunk/Source/WebCore/ChangeLog	2016-10-19 07:42:56 UTC (rev 207528)
@@ -1,3 +1,9 @@
+2016-10-19  Darin Adler  <da...@apple.com>
+
+        Try to fix build.
+
+        * page/PerformanceUserTiming.cpp: Add back class name; needed by some compiler versions.
+
 2016-10-19  Carlos Garcia Campos  <cgar...@igalia.com>
 
         Unreviewed. Fix the build after r207522.

Modified: trunk/Source/WebCore/page/PerformanceUserTiming.cpp (207527 => 207528)


--- trunk/Source/WebCore/page/PerformanceUserTiming.cpp	2016-10-19 07:40:28 UTC (rev 207527)
+++ trunk/Source/WebCore/page/PerformanceUserTiming.cpp	2016-10-19 07:42:56 UTC (rev 207528)
@@ -48,27 +48,27 @@
 {
     using MapPair = std::pair<ASCIILiteral, NavigationTimingFunction>;
     static const std::array<MapPair, 21> pairs = { {
-        { ASCIILiteral("navigationStart"), &PerformanceTiming::navigationStart },
-        { ASCIILiteral("unloadEventStart"), &PerformanceTiming::unloadEventStart },
-        { ASCIILiteral("unloadEventEnd"), &PerformanceTiming::unloadEventEnd },
-        { ASCIILiteral("redirectStart"), &PerformanceTiming::redirectStart },
-        { ASCIILiteral("redirectEnd"), &PerformanceTiming::redirectEnd },
-        { ASCIILiteral("fetchStart"), &PerformanceTiming::fetchStart },
-        { ASCIILiteral("domainLookupStart"), &PerformanceTiming::domainLookupStart },
-        { ASCIILiteral("domainLookupEnd"), &PerformanceTiming::domainLookupEnd },
-        { ASCIILiteral("connectStart"), &PerformanceTiming::connectStart },
-        { ASCIILiteral("connectEnd"), &PerformanceTiming::connectEnd },
-        { ASCIILiteral("secureConnectionStart"), &PerformanceTiming::secureConnectionStart },
-        { ASCIILiteral("requestStart"), &PerformanceTiming::requestStart },
-        { ASCIILiteral("responseStart"), &PerformanceTiming::responseStart },
-        { ASCIILiteral("responseEnd"), &PerformanceTiming::responseEnd },
-        { ASCIILiteral("domLoading"), &PerformanceTiming::domLoading },
-        { ASCIILiteral("domInteractive"), &PerformanceTiming::domInteractive },
-        { ASCIILiteral("domContentLoadedEventStart"), &PerformanceTiming::domContentLoadedEventStart },
-        { ASCIILiteral("domContentLoadedEventEnd"), &PerformanceTiming::domContentLoadedEventEnd },
-        { ASCIILiteral("domComplete"), &PerformanceTiming::domComplete },
-        { ASCIILiteral("loadEventStart"), &PerformanceTiming::loadEventStart },
-        { ASCIILiteral("loadEventEnd"), &PerformanceTiming::loadEventEnd },
+        MapPair { ASCIILiteral("navigationStart"), &PerformanceTiming::navigationStart },
+        MapPair { ASCIILiteral("unloadEventStart"), &PerformanceTiming::unloadEventStart },
+        MapPair { ASCIILiteral("unloadEventEnd"), &PerformanceTiming::unloadEventEnd },
+        MapPair { ASCIILiteral("redirectStart"), &PerformanceTiming::redirectStart },
+        MapPair { ASCIILiteral("redirectEnd"), &PerformanceTiming::redirectEnd },
+        MapPair { ASCIILiteral("fetchStart"), &PerformanceTiming::fetchStart },
+        MapPair { ASCIILiteral("domainLookupStart"), &PerformanceTiming::domainLookupStart },
+        MapPair { ASCIILiteral("domainLookupEnd"), &PerformanceTiming::domainLookupEnd },
+        MapPair { ASCIILiteral("connectStart"), &PerformanceTiming::connectStart },
+        MapPair { ASCIILiteral("connectEnd"), &PerformanceTiming::connectEnd },
+        MapPair { ASCIILiteral("secureConnectionStart"), &PerformanceTiming::secureConnectionStart },
+        MapPair { ASCIILiteral("requestStart"), &PerformanceTiming::requestStart },
+        MapPair { ASCIILiteral("responseStart"), &PerformanceTiming::responseStart },
+        MapPair { ASCIILiteral("responseEnd"), &PerformanceTiming::responseEnd },
+        MapPair { ASCIILiteral("domLoading"), &PerformanceTiming::domLoading },
+        MapPair { ASCIILiteral("domInteractive"), &PerformanceTiming::domInteractive },
+        MapPair { ASCIILiteral("domContentLoadedEventStart"), &PerformanceTiming::domContentLoadedEventStart },
+        MapPair { ASCIILiteral("domContentLoadedEventEnd"), &PerformanceTiming::domContentLoadedEventEnd },
+        MapPair { ASCIILiteral("domComplete"), &PerformanceTiming::domComplete },
+        MapPair { ASCIILiteral("loadEventStart"), &PerformanceTiming::loadEventStart },
+        MapPair { ASCIILiteral("loadEventEnd"), &PerformanceTiming::loadEventEnd },
     } };
 
     static NeverDestroyed<HashMap<String, NavigationTimingFunction>> map;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to