<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>[211301] trunk/Source/WebCore</title>
</head>
<body>

<style type="text/css"><!--
#msg dl.meta { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dl.meta dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer, #logmsg { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt;  }
#msg dl a { font-weight: bold}
#msg dl a:link    { color:#fc3; }
#msg dl a:active  { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { overflow: auto; background: #ffc; border: 1px #fa0 solid; padding: 6px; }
#logmsg { background: #ffc; border: 1px #fa0 solid; padding: 1em 1em 0 1em; }
#logmsg p, #logmsg pre, #logmsg blockquote { margin: 0 0 1em 0; }
#logmsg p, #logmsg li, #logmsg dt, #logmsg dd { line-height: 14pt; }
#logmsg h1, #logmsg h2, #logmsg h3, #logmsg h4, #logmsg h5, #logmsg h6 { margin: .5em 0; }
#logmsg h1:first-child, #logmsg h2:first-child, #logmsg h3:first-child, #logmsg h4:first-child, #logmsg h5:first-child, #logmsg h6:first-child { margin-top: 0; }
#logmsg ul, #logmsg ol { padding: 0; list-style-position: inside; margin: 0 0 0 1em; }
#logmsg ul { text-indent: -1em; padding-left: 1em; }#logmsg ol { text-indent: -1.5em; padding-left: 1.5em; }
#logmsg > ul, #logmsg > ol { margin: 0 0 1em 0; }
#logmsg pre { background: #eee; padding: 1em; }
#logmsg blockquote { border: 1px solid #fa0; border-left-width: 10px; padding: 1em 1em 0 1em; background: white;}
#logmsg dl { margin: 0; }
#logmsg dt { font-weight: bold; }
#logmsg dd { margin: 0; padding: 0 0 0.5em 0; }
#logmsg dd:before { content:'\00bb';}
#logmsg table { border-spacing: 0px; border-collapse: collapse; border-top: 4px solid #fa0; border-bottom: 1px solid #fa0; background: #fff; }
#logmsg table th { text-align: left; font-weight: normal; padding: 0.2em 0.5em; border-top: 1px dotted #fa0; }
#logmsg table td { text-align: right; border-top: 1px dotted #fa0; padding: 0.2em 0.5em; }
#logmsg table thead th { text-align: center; border-bottom: 1px solid #fa0; }
#logmsg table th.Corner { text-align: left; }
#logmsg hr { border: none 0; border-top: 2px dashed #fa0; height: 1px; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff  {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<div id="msg">
<dl class="meta">
<dt>Revision</dt> <dd><a href="http://trac.webkit.org/projects/webkit/changeset/211301">211301</a></dd>
<dt>Author</dt> <dd>cdumez@apple.com</dd>
<dt>Date</dt> <dd>2017-01-27 13:07:57 -0800 (Fri, 27 Jan 2017)</dd>
</dl>

<h3>Log Message</h3>
<pre>Fix diagnostic logging under loader/
https://bugs.webkit.org/show_bug.cgi?id=167512

Reviewed by Alex Christensen.

Fix diagnostic logging under loader/. We should not be using logDiagnosticLoggingWithValue()
without a numeric value.

* loader/ResourceLoader.cpp:
(WebCore::logResourceResponseSource):
* loader/SubresourceLoader.cpp:
(WebCore::logResourceLoaded):
* loader/cache/CachedResourceLoader.cpp:
(WebCore::logMemoryCacheResourceRequest):
(WebCore::CachedResourceLoader::requestResource):
(WebCore::logRevalidation):
* page/DiagnosticLoggingKeys.cpp:
(WebCore::DiagnosticLoggingKeys::memoryCacheEntryDecisionKey):
(WebCore::DiagnosticLoggingKeys::memoryCacheUsageKey):
(WebCore::DiagnosticLoggingKeys::cachedResourceRevalidationReasonKey):
(WebCore::DiagnosticLoggingKeys::resourceLoadedKey):
(WebCore::DiagnosticLoggingKeys::resourceResponseSourceKey):
* page/DiagnosticLoggingKeys.h:</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkSourceWebCoreChangeLog">trunk/Source/WebCore/ChangeLog</a></li>
<li><a href="#trunkSourceWebCoreloaderResourceLoadercpp">trunk/Source/WebCore/loader/ResourceLoader.cpp</a></li>
<li><a href="#trunkSourceWebCoreloaderSubresourceLoadercpp">trunk/Source/WebCore/loader/SubresourceLoader.cpp</a></li>
<li><a href="#trunkSourceWebCoreloadercacheCachedResourceLoadercpp">trunk/Source/WebCore/loader/cache/CachedResourceLoader.cpp</a></li>
<li><a href="#trunkSourceWebCorepageDiagnosticLoggingKeyscpp">trunk/Source/WebCore/page/DiagnosticLoggingKeys.cpp</a></li>
<li><a href="#trunkSourceWebCorepageDiagnosticLoggingKeysh">trunk/Source/WebCore/page/DiagnosticLoggingKeys.h</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkSourceWebCoreChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/ChangeLog (211300 => 211301)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/ChangeLog        2017-01-27 21:01:50 UTC (rev 211300)
+++ trunk/Source/WebCore/ChangeLog        2017-01-27 21:07:57 UTC (rev 211301)
</span><span class="lines">@@ -1,5 +1,31 @@
</span><span class="cx"> 2017-01-27  Chris Dumez  &lt;cdumez@apple.com&gt;
</span><span class="cx"> 
</span><ins>+        Fix diagnostic logging under loader/
+        https://bugs.webkit.org/show_bug.cgi?id=167512
+
+        Reviewed by Alex Christensen.
+
+        Fix diagnostic logging under loader/. We should not be using logDiagnosticLoggingWithValue()
+        without a numeric value.
+
+        * loader/ResourceLoader.cpp:
+        (WebCore::logResourceResponseSource):
+        * loader/SubresourceLoader.cpp:
+        (WebCore::logResourceLoaded):
+        * loader/cache/CachedResourceLoader.cpp:
+        (WebCore::logMemoryCacheResourceRequest):
+        (WebCore::CachedResourceLoader::requestResource):
+        (WebCore::logRevalidation):
+        * page/DiagnosticLoggingKeys.cpp:
+        (WebCore::DiagnosticLoggingKeys::memoryCacheEntryDecisionKey):
+        (WebCore::DiagnosticLoggingKeys::memoryCacheUsageKey):
+        (WebCore::DiagnosticLoggingKeys::cachedResourceRevalidationReasonKey):
+        (WebCore::DiagnosticLoggingKeys::resourceLoadedKey):
+        (WebCore::DiagnosticLoggingKeys::resourceResponseSourceKey):
+        * page/DiagnosticLoggingKeys.h:
+
+2017-01-27  Chris Dumez  &lt;cdumez@apple.com&gt;
+
</ins><span class="cx">         Fix diagnostic logging in media code
</span><span class="cx">         https://bugs.webkit.org/show_bug.cgi?id=167510
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkSourceWebCoreloaderResourceLoadercpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/loader/ResourceLoader.cpp (211300 => 211301)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/loader/ResourceLoader.cpp        2017-01-27 21:01:50 UTC (rev 211300)
+++ trunk/Source/WebCore/loader/ResourceLoader.cpp        2017-01-27 21:07:57 UTC (rev 211301)
</span><span class="lines">@@ -431,7 +431,7 @@
</span><span class="cx">         return;
</span><span class="cx">     }
</span><span class="cx"> 
</span><del>-    frame-&gt;page()-&gt;diagnosticLoggingClient().logDiagnosticMessageWithValue(DiagnosticLoggingKeys::resourceResponseKey(), DiagnosticLoggingKeys::sourceKey(), sourceKey, ShouldSample::Yes);
</del><ins>+    frame-&gt;page()-&gt;diagnosticLoggingClient().logDiagnosticMessage(DiagnosticLoggingKeys::resourceResponseSourceKey(), sourceKey, ShouldSample::Yes);
</ins><span class="cx"> }
</span><span class="cx"> 
</span><span class="cx"> void ResourceLoader::didReceiveResponse(const ResourceResponse&amp; r)
</span></span></pre></div>
<a id="trunkSourceWebCoreloaderSubresourceLoadercpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/loader/SubresourceLoader.cpp (211300 => 211301)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/loader/SubresourceLoader.cpp        2017-01-27 21:01:50 UTC (rev 211300)
+++ trunk/Source/WebCore/loader/SubresourceLoader.cpp        2017-01-27 21:07:57 UTC (rev 211301)
</span><span class="lines">@@ -455,7 +455,7 @@
</span><span class="cx">         resourceType = DiagnosticLoggingKeys::otherKey();
</span><span class="cx">         break;
</span><span class="cx">     }
</span><del>-    frame-&gt;page()-&gt;diagnosticLoggingClient().logDiagnosticMessageWithValue(DiagnosticLoggingKeys::resourceKey(), DiagnosticLoggingKeys::loadedKey(), resourceType, ShouldSample::Yes);
</del><ins>+    frame-&gt;page()-&gt;diagnosticLoggingClient().logDiagnosticMessage(DiagnosticLoggingKeys::resourceLoadedKey(), resourceType, ShouldSample::Yes);
</ins><span class="cx"> }
</span><span class="cx"> 
</span><span class="cx"> bool SubresourceLoader::checkResponseCrossOriginAccessControl(const ResourceResponse&amp; response, String&amp; errorDescription)
</span></span></pre></div>
<a id="trunkSourceWebCoreloadercacheCachedResourceLoadercpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/loader/cache/CachedResourceLoader.cpp (211300 => 211301)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/loader/cache/CachedResourceLoader.cpp        2017-01-27 21:01:50 UTC (rev 211300)
+++ trunk/Source/WebCore/loader/cache/CachedResourceLoader.cpp        2017-01-27 21:07:57 UTC (rev 211301)
</span><span class="lines">@@ -631,14 +631,11 @@
</span><span class="cx">     return resourceHandle;
</span><span class="cx"> }
</span><span class="cx"> 
</span><del>-static inline void logMemoryCacheResourceRequest(Frame* frame, const String&amp; description, const String&amp; value = String())
</del><ins>+static inline void logMemoryCacheResourceRequest(Frame* frame, const String&amp; key, const String&amp; description)
</ins><span class="cx"> {
</span><span class="cx">     if (!frame || !frame-&gt;page())
</span><span class="cx">         return;
</span><del>-    if (value.isNull())
-        frame-&gt;page()-&gt;diagnosticLoggingClient().logDiagnosticMessage(DiagnosticLoggingKeys::resourceRequestKey(), description, ShouldSample::Yes);
-    else
-        frame-&gt;page()-&gt;diagnosticLoggingClient().logDiagnosticMessageWithValue(DiagnosticLoggingKeys::resourceRequestKey(), description, value, ShouldSample::Yes);
</del><ins>+    frame-&gt;page()-&gt;diagnosticLoggingClient().logDiagnosticMessage(key, description, ShouldSample::Yes);
</ins><span class="cx"> }
</span><span class="cx"> 
</span><span class="cx"> void CachedResourceLoader::prepareFetch(CachedResource::Type type, CachedResourceRequest&amp; request)
</span><span class="lines">@@ -745,7 +742,7 @@
</span><span class="cx">     if (request.allowsCaching())
</span><span class="cx">         resource = memoryCache.resourceForRequest(request.resourceRequest(), sessionID());
</span><span class="cx"> 
</span><del>-    logMemoryCacheResourceRequest(frame(), resource ? DiagnosticLoggingKeys::inMemoryCacheKey() : DiagnosticLoggingKeys::notInMemoryCacheKey());
</del><ins>+    logMemoryCacheResourceRequest(frame(), DiagnosticLoggingKeys::memoryCacheUsageKey(), resource ? DiagnosticLoggingKeys::inMemoryCacheKey() : DiagnosticLoggingKeys::notInMemoryCacheKey());
</ins><span class="cx"> 
</span><span class="cx">     RevalidationPolicy policy = determineRevalidationPolicy(type, request, resource.get(), forPreload, defer);
</span><span class="cx">     switch (policy) {
</span><span class="lines">@@ -754,12 +751,12 @@
</span><span class="cx">         FALLTHROUGH;
</span><span class="cx">     case Load:
</span><span class="cx">         if (resource)
</span><del>-            logMemoryCacheResourceRequest(frame(), DiagnosticLoggingKeys::inMemoryCacheKey(), DiagnosticLoggingKeys::unusedKey());
</del><ins>+            logMemoryCacheResourceRequest(frame(), DiagnosticLoggingKeys::memoryCacheEntryDecisionKey(), DiagnosticLoggingKeys::unusedKey());
</ins><span class="cx">         resource = loadResource(type, WTFMove(request));
</span><span class="cx">         break;
</span><span class="cx">     case Revalidate:
</span><span class="cx">         if (resource)
</span><del>-            logMemoryCacheResourceRequest(frame(), DiagnosticLoggingKeys::inMemoryCacheKey(), DiagnosticLoggingKeys::revalidatingKey());
</del><ins>+            logMemoryCacheResourceRequest(frame(), DiagnosticLoggingKeys::memoryCacheEntryDecisionKey(), DiagnosticLoggingKeys::revalidatingKey());
</ins><span class="cx">         resource = revalidateResource(WTFMove(request), *resource);
</span><span class="cx">         break;
</span><span class="cx">     case Use:
</span><span class="lines">@@ -771,7 +768,7 @@
</span><span class="cx">         } else {
</span><span class="cx">             if (!shouldContinueAfterNotifyingLoadedFromMemoryCache(request, resource.get()))
</span><span class="cx">                 return nullptr;
</span><del>-            logMemoryCacheResourceRequest(frame(), DiagnosticLoggingKeys::inMemoryCacheKey(), DiagnosticLoggingKeys::usedKey());
</del><ins>+            logMemoryCacheResourceRequest(frame(), DiagnosticLoggingKeys::memoryCacheEntryDecisionKey(), DiagnosticLoggingKeys::usedKey());
</ins><span class="cx">             memoryCache.resourceAccessed(*resource);
</span><span class="cx"> #if ENABLE(WEB_TIMING)
</span><span class="cx">             if (document() &amp;&amp; RuntimeEnabledFeatures::sharedFeatures().resourceTimingEnabled()) {
</span><span class="lines">@@ -871,7 +868,7 @@
</span><span class="cx"> 
</span><span class="cx"> static void logRevalidation(const String&amp; reason, DiagnosticLoggingClient&amp; logClient)
</span><span class="cx"> {
</span><del>-    logClient.logDiagnosticMessageWithValue(DiagnosticLoggingKeys::cachedResourceRevalidationKey(), DiagnosticLoggingKeys::reasonKey(), reason, ShouldSample::Yes);
</del><ins>+    logClient.logDiagnosticMessage(DiagnosticLoggingKeys::cachedResourceRevalidationReasonKey(), reason, ShouldSample::Yes);
</ins><span class="cx"> }
</span><span class="cx"> 
</span><span class="cx"> static void logResourceRevalidationDecision(CachedResource::RevalidationDecision reason, const Frame* frame)
</span></span></pre></div>
<a id="trunkSourceWebCorepageDiagnosticLoggingKeyscpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/page/DiagnosticLoggingKeys.cpp (211300 => 211301)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/page/DiagnosticLoggingKeys.cpp        2017-01-27 21:01:50 UTC (rev 211300)
+++ trunk/Source/WebCore/page/DiagnosticLoggingKeys.cpp        2017-01-27 21:07:57 UTC (rev 211301)
</span><span class="lines">@@ -38,6 +38,16 @@
</span><span class="cx">     return ASCIILiteral(&quot;mediaFailedLoading&quot;);
</span><span class="cx"> }
</span><span class="cx"> 
</span><ins>+String DiagnosticLoggingKeys::memoryCacheEntryDecisionKey()
+{
+    return ASCIILiteral(&quot;memoryCacheEntryDecision&quot;);
+}
+
+String DiagnosticLoggingKeys::memoryCacheUsageKey()
+{
+    return ASCIILiteral(&quot;memoryCacheUsage&quot;);
+}
+
</ins><span class="cx"> String DiagnosticLoggingKeys::missingValidatorFieldsKey()
</span><span class="cx"> {
</span><span class="cx">     return ASCIILiteral(&quot;missingValidatorFields&quot;);
</span><span class="lines">@@ -233,11 +243,6 @@
</span><span class="cx">     return ASCIILiteral(&quot;isReloadIgnoringCacheData&quot;);
</span><span class="cx"> }
</span><span class="cx"> 
</span><del>-String DiagnosticLoggingKeys::loadedKey()
-{
-    return ASCIILiteral(&quot;loaded&quot;);
-}
-
</del><span class="cx"> String DiagnosticLoggingKeys::loadingKey()
</span><span class="cx"> {
</span><span class="cx">     return ASCIILiteral(&quot;loading&quot;);
</span><span class="lines">@@ -308,11 +313,6 @@
</span><span class="cx">     return ASCIILiteral(&quot;raw&quot;);
</span><span class="cx"> }
</span><span class="cx"> 
</span><del>-String DiagnosticLoggingKeys::reasonKey()
-{
-    return ASCIILiteral(&quot;reason&quot;);
-}
-
</del><span class="cx"> String DiagnosticLoggingKeys::redirectKey()
</span><span class="cx"> {
</span><span class="cx">     return ASCIILiteral(&quot;redirect&quot;);
</span><span class="lines">@@ -388,6 +388,11 @@
</span><span class="cx">     return ASCIILiteral(&quot;cachedResourceRevalidation&quot;);
</span><span class="cx"> }
</span><span class="cx"> 
</span><ins>+String DiagnosticLoggingKeys::cachedResourceRevalidationReasonKey()
+{
+    return ASCIILiteral(&quot;cachedResourceRevalidationReason&quot;);
+}
+
</ins><span class="cx"> String DiagnosticLoggingKeys::deniedByClientKey()
</span><span class="cx"> {
</span><span class="cx">     return ASCIILiteral(&quot;deniedByClient&quot;);
</span><span class="lines">@@ -438,21 +443,16 @@
</span><span class="cx">     return ASCIILiteral(&quot;retrievalRequest&quot;);
</span><span class="cx"> }
</span><span class="cx"> 
</span><del>-String DiagnosticLoggingKeys::resourceKey()
</del><ins>+String DiagnosticLoggingKeys::resourceLoadedKey()
</ins><span class="cx"> {
</span><del>-    return ASCIILiteral(&quot;resource&quot;);
</del><ins>+    return ASCIILiteral(&quot;resourceLoaded&quot;);
</ins><span class="cx"> }
</span><span class="cx"> 
</span><del>-String DiagnosticLoggingKeys::resourceRequestKey()
</del><ins>+String DiagnosticLoggingKeys::resourceResponseSourceKey()
</ins><span class="cx"> {
</span><del>-    return ASCIILiteral(&quot;resourceRequest&quot;);
</del><ins>+    return ASCIILiteral(&quot;resourceResponseSource&quot;);
</ins><span class="cx"> }
</span><span class="cx"> 
</span><del>-String DiagnosticLoggingKeys::resourceResponseKey()
-{
-    return ASCIILiteral(&quot;resourceResponse&quot;);
-}
-
</del><span class="cx"> String DiagnosticLoggingKeys::retrievalKey()
</span><span class="cx"> {
</span><span class="cx">     return ASCIILiteral(&quot;retrieval&quot;);
</span><span class="lines">@@ -478,11 +478,6 @@
</span><span class="cx">     return ASCIILiteral(&quot;script&quot;);
</span><span class="cx"> }
</span><span class="cx"> 
</span><del>-String DiagnosticLoggingKeys::sourceKey()
-{
-    return ASCIILiteral(&quot;source&quot;);
-}
-
</del><span class="cx"> String DiagnosticLoggingKeys::streamingMedia()
</span><span class="cx"> {
</span><span class="cx">     return ASCIILiteral(&quot;streamingMedia&quot;);
</span></span></pre></div>
<a id="trunkSourceWebCorepageDiagnosticLoggingKeysh"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/page/DiagnosticLoggingKeys.h (211300 => 211301)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/page/DiagnosticLoggingKeys.h        2017-01-27 21:01:50 UTC (rev 211300)
+++ trunk/Source/WebCore/page/DiagnosticLoggingKeys.h        2017-01-27 21:07:57 UTC (rev 211301)
</span><span class="lines">@@ -38,6 +38,7 @@
</span><span class="cx">     WEBCORE_EXPORT static String backNavigationKey();
</span><span class="cx">     WEBCORE_EXPORT static String cacheControlNoStoreKey();
</span><span class="cx">     static String cachedResourceRevalidationKey();
</span><ins>+    static String cachedResourceRevalidationReasonKey();
</ins><span class="cx">     static String canCacheKey();
</span><span class="cx">     static String cannotSuspendActiveDOMObjectsKey();
</span><span class="cx">     WEBCORE_EXPORT static String cpuUsageKey();
</span><span class="lines">@@ -70,7 +71,6 @@
</span><span class="cx">     static String isErrorPageKey();
</span><span class="cx">     static String isExpiredKey();
</span><span class="cx">     WEBCORE_EXPORT static String isReloadIgnoringCacheDataKey();
</span><del>-    static String loadedKey();
</del><span class="cx">     static String loadingKey();
</span><span class="cx">     static String isLoadingKey();
</span><span class="cx">     static String mainDocumentErrorKey();
</span><span class="lines">@@ -77,6 +77,8 @@
</span><span class="cx">     static String mainResourceKey();
</span><span class="cx">     static String mediaLoadedKey();
</span><span class="cx">     static String mediaLoadingFailedKey();
</span><ins>+    static String memoryCacheEntryDecisionKey();
+    static String memoryCacheUsageKey();
</ins><span class="cx">     WEBCORE_EXPORT static String missingValidatorFieldsKey();
</span><span class="cx">     static String navigationKey();
</span><span class="cx">     WEBCORE_EXPORT static String needsRevalidationKey();
</span><span class="lines">@@ -116,21 +118,18 @@
</span><span class="cx">     static String prunedDueToProcessSuspended();
</span><span class="cx">     static String quirkRedirectComingKey();
</span><span class="cx">     static String rawKey();
</span><del>-    static String reasonKey();
</del><span class="cx">     static String redirectKey();
</span><span class="cx">     static String reloadFromOriginKey();
</span><span class="cx">     static String reloadKey();
</span><span class="cx">     static String replaceKey();
</span><span class="cx">     WEBCORE_EXPORT static String requestKey();
</span><del>-    static String resourceKey();
-    static String resourceRequestKey();
-    static String resourceResponseKey();
</del><ins>+    static String resourceLoadedKey();
+    static String resourceResponseSourceKey();
</ins><span class="cx">     WEBCORE_EXPORT static String retrievalKey();
</span><span class="cx">     WEBCORE_EXPORT static String retrievalRequestKey();
</span><span class="cx">     WEBCORE_EXPORT static String revalidatingKey();
</span><span class="cx">     static String sameLoadKey();
</span><span class="cx">     static String scriptKey();
</span><del>-    static String sourceKey();
</del><span class="cx">     WEBCORE_EXPORT static String streamingMedia();
</span><span class="cx">     static String styleSheetKey();
</span><span class="cx">     WEBCORE_EXPORT static String successfulSpeculativeWarmupWithRevalidationKey();
</span></span></pre>
</div>
</div>

</body>
</html>