Title: [269078] trunk/Source/WebCore
Revision
269078
Author
[email protected]
Date
2020-10-27 15:22:01 -0700 (Tue, 27 Oct 2020)

Log Message

Remove leftover DiagnosticLoggingKey after r268458
https://bugs.webkit.org/show_bug.cgi?id=218263
<rdar://problem/70738034>

Reviewed by Darin Adler.

Remove the leftover DiagnosticKey for ResourceLoadStatistics telemetry now that the
actual data is no longer generated.

* page/DiagnosticLoggingKeys.cpp:
(WebCore::DiagnosticLoggingKeys::resourceLoadStatisticsTelemetryKey): Deleted.
* page/DiagnosticLoggingKeys.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (269077 => 269078)


--- trunk/Source/WebCore/ChangeLog	2020-10-27 22:21:28 UTC (rev 269077)
+++ trunk/Source/WebCore/ChangeLog	2020-10-27 22:22:01 UTC (rev 269078)
@@ -1,3 +1,18 @@
+2020-10-27  Brent Fulgham  <[email protected]>
+
+        Remove leftover DiagnosticLoggingKey after r268458
+        https://bugs.webkit.org/show_bug.cgi?id=218263
+        <rdar://problem/70738034>
+
+        Reviewed by Darin Adler.
+
+        Remove the leftover DiagnosticKey for ResourceLoadStatistics telemetry now that the
+        actual data is no longer generated.
+
+        * page/DiagnosticLoggingKeys.cpp:
+        (WebCore::DiagnosticLoggingKeys::resourceLoadStatisticsTelemetryKey): Deleted.
+        * page/DiagnosticLoggingKeys.h:
+
 2020-10-27  Jer Noble  <[email protected]>
 
         [Mac] Audio and Video element creation up to 300x slower than other browsers

Modified: trunk/Source/WebCore/page/DiagnosticLoggingKeys.cpp (269077 => 269078)


--- trunk/Source/WebCore/page/DiagnosticLoggingKeys.cpp	2020-10-27 22:21:28 UTC (rev 269077)
+++ trunk/Source/WebCore/page/DiagnosticLoggingKeys.cpp	2020-10-27 22:22:01 UTC (rev 269078)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2012-2018 Apple Inc. All rights reserved.
+ * Copyright (C) 2012-2020 Apple Inc. All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
@@ -868,11 +868,6 @@
         return "50to70"_s;
     return "over70"_s;
 }
-
-String DiagnosticLoggingKeys::resourceLoadStatisticsTelemetryKey()
-{
-    return "resourceLoadStatisticsTelemetry"_s;
-}
     
 } // namespace WebCore
 

Modified: trunk/Source/WebCore/page/DiagnosticLoggingKeys.h (269077 => 269078)


--- trunk/Source/WebCore/page/DiagnosticLoggingKeys.h	2020-10-27 22:21:28 UTC (rev 269077)
+++ trunk/Source/WebCore/page/DiagnosticLoggingKeys.h	2020-10-27 22:22:01 UTC (rev 269078)
@@ -193,8 +193,6 @@
     WEBCORE_EXPORT static String memoryUsageToDiagnosticLoggingKey(uint64_t memoryUsage);
     WEBCORE_EXPORT static String foregroundCPUUsageToDiagnosticLoggingKey(double cpuUsage);
     WEBCORE_EXPORT static String backgroundCPUUsageToDiagnosticLoggingKey(double cpuUsage);
-    
-    WEBCORE_EXPORT static String resourceLoadStatisticsTelemetryKey();
 };
 
 } // namespace WebCore
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to