<!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>[168581] trunk/Source/WebKit2</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/168581">168581</a></dd>
<dt>Author</dt> <dd>andersca@apple.com</dd>
<dt>Date</dt> <dd>2014-05-10 13:11:35 -0700 (Sat, 10 May 2014)</dd>
</dl>

<h3>Log Message</h3>
<pre>Make -[WKNavigationResponse frame] SPI and only expose -[WKNavigationResponse isMainFrame]
https://bugs.webkit.org/show_bug.cgi?id=132781
&lt;rdar://problem/16868319&gt;

Reviewed by Darin Adler.

* UIProcess/API/Cocoa/WKNavigationResponse.h:
* UIProcess/API/Cocoa/WKNavigationResponse.mm:
(-[WKNavigationResponse description]):
(-[WKNavigationResponse isMainFrameNavigation]):
(-[WKNavigationResponse _frame]):
(-[WKNavigationResponse frame]): Deleted.
(-[WKNavigationResponse setFrame:]): Deleted.
* UIProcess/API/Cocoa/WKNavigationResponseInternal.h:
* UIProcess/API/Cocoa/WKNavigationResponsePrivate.h: Added.
* UIProcess/Cocoa/NavigationState.mm:
(WebKit::NavigationState::PolicyClient::decidePolicyForResponse):
* WebKit2.xcodeproj/project.pbxproj:</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkSourceWebKit2ChangeLog">trunk/Source/WebKit2/ChangeLog</a></li>
<li><a href="#trunkSourceWebKit2UIProcessAPICocoaWKNavigationResponseh">trunk/Source/WebKit2/UIProcess/API/Cocoa/WKNavigationResponse.h</a></li>
<li><a href="#trunkSourceWebKit2UIProcessAPICocoaWKNavigationResponsemm">trunk/Source/WebKit2/UIProcess/API/Cocoa/WKNavigationResponse.mm</a></li>
<li><a href="#trunkSourceWebKit2UIProcessAPICocoaWKNavigationResponseInternalh">trunk/Source/WebKit2/UIProcess/API/Cocoa/WKNavigationResponseInternal.h</a></li>
<li><a href="#trunkSourceWebKit2UIProcessCocoaNavigationStatemm">trunk/Source/WebKit2/UIProcess/Cocoa/NavigationState.mm</a></li>
<li><a href="#trunkSourceWebKit2WebKit2xcodeprojprojectpbxproj">trunk/Source/WebKit2/WebKit2.xcodeproj/project.pbxproj</a></li>
</ul>

<h3>Added Paths</h3>
<ul>
<li><a href="#trunkSourceWebKit2UIProcessAPICocoaWKNavigationResponsePrivateh">trunk/Source/WebKit2/UIProcess/API/Cocoa/WKNavigationResponsePrivate.h</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkSourceWebKit2ChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebKit2/ChangeLog (168580 => 168581)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/ChangeLog        2014-05-10 19:50:34 UTC (rev 168580)
+++ trunk/Source/WebKit2/ChangeLog        2014-05-10 20:11:35 UTC (rev 168581)
</span><span class="lines">@@ -1,3 +1,24 @@
</span><ins>+2014-05-10  Anders Carlsson  &lt;andersca@apple.com&gt;
+
+        Make -[WKNavigationResponse frame] SPI and only expose -[WKNavigationResponse isMainFrame]
+        https://bugs.webkit.org/show_bug.cgi?id=132781
+        &lt;rdar://problem/16868319&gt;
+
+        Reviewed by Darin Adler.
+
+        * UIProcess/API/Cocoa/WKNavigationResponse.h:
+        * UIProcess/API/Cocoa/WKNavigationResponse.mm:
+        (-[WKNavigationResponse description]):
+        (-[WKNavigationResponse isMainFrameNavigation]):
+        (-[WKNavigationResponse _frame]):
+        (-[WKNavigationResponse frame]): Deleted.
+        (-[WKNavigationResponse setFrame:]): Deleted.
+        * UIProcess/API/Cocoa/WKNavigationResponseInternal.h:
+        * UIProcess/API/Cocoa/WKNavigationResponsePrivate.h: Added.
+        * UIProcess/Cocoa/NavigationState.mm:
+        (WebKit::NavigationState::PolicyClient::decidePolicyForResponse):
+        * WebKit2.xcodeproj/project.pbxproj:
+
</ins><span class="cx"> 2014-05-09  Dan Bernstein  &lt;mitz@apple.com&gt;
</span><span class="cx"> 
</span><span class="cx">         [Cocoa] Remove a deprecated bundle form delegate method now that no one implements it
</span></span></pre></div>
<a id="trunkSourceWebKit2UIProcessAPICocoaWKNavigationResponseh"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebKit2/UIProcess/API/Cocoa/WKNavigationResponse.h (168580 => 168581)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/UIProcess/API/Cocoa/WKNavigationResponse.h        2014-05-10 19:50:34 UTC (rev 168580)
+++ trunk/Source/WebKit2/UIProcess/API/Cocoa/WKNavigationResponse.h        2014-05-10 20:11:35 UTC (rev 168581)
</span><span class="lines">@@ -36,9 +36,9 @@
</span><span class="cx"> WK_CLASS_AVAILABLE(10_10, 8_0)
</span><span class="cx"> @interface WKNavigationResponse : NSObject
</span><span class="cx"> 
</span><del>-/*! @abstract Represents the frame that is being navigated.
</del><ins>+/*! @abstract Whether the frame that is being navigated is the main frame or not.
</ins><span class="cx">  */
</span><del>-@property (nonatomic, readonly) WKFrameInfo *frame;
</del><ins>+@property (nonatomic, readonly, getter=isMainFrameNavigation) BOOL mainFrameNavigation;
</ins><span class="cx"> 
</span><span class="cx"> /*! @abstract The NSURLResponse of the frame.
</span><span class="cx">  */
</span></span></pre></div>
<a id="trunkSourceWebKit2UIProcessAPICocoaWKNavigationResponsemm"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebKit2/UIProcess/API/Cocoa/WKNavigationResponse.mm (168580 => 168581)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/UIProcess/API/Cocoa/WKNavigationResponse.mm        2014-05-10 19:50:34 UTC (rev 168580)
+++ trunk/Source/WebKit2/UIProcess/API/Cocoa/WKNavigationResponse.mm        2014-05-10 20:11:35 UTC (rev 168581)
</span><span class="lines">@@ -29,27 +29,22 @@
</span><span class="cx"> #if WK_API_ENABLED
</span><span class="cx"> 
</span><span class="cx"> #import &lt;wtf/RetainPtr.h&gt;
</span><ins>+#import &quot;WKFrameInfo.h&quot;
</ins><span class="cx"> 
</span><span class="cx"> @implementation WKNavigationResponse {
</span><del>-    RetainPtr&lt;WKFrameInfo&gt; _frame;
</del><span class="cx">     RetainPtr&lt;NSURLResponse&gt; _response;
</span><span class="cx"> }
</span><span class="cx"> 
</span><span class="cx"> - (NSString *)description
</span><span class="cx"> {
</span><del>-    return [NSString stringWithFormat:@&quot;&lt;%@: %p; frame = %@; response = %@&gt;&quot;, NSStringFromClass(self.class), self, _frame.get(), _response.get()];
</del><ins>+    return [NSString stringWithFormat:@&quot;&lt;%@: %p; response = %@&gt;&quot;, NSStringFromClass(self.class), self, _response.get()];
</ins><span class="cx"> }
</span><span class="cx"> 
</span><del>-- (WKFrameInfo *)frame
</del><ins>+- (BOOL)isMainFrameNavigation
</ins><span class="cx"> {
</span><del>-    return _frame.get();
</del><ins>+    return [_frame isMainFrame];
</ins><span class="cx"> }
</span><span class="cx"> 
</span><del>-- (void)setFrame:(WKFrameInfo *)frame
-{
-    _frame = frame;
-}
-
</del><span class="cx"> - (NSURLResponse *)response
</span><span class="cx"> {
</span><span class="cx">     return _response.get();
</span><span class="lines">@@ -62,4 +57,14 @@
</span><span class="cx"> 
</span><span class="cx"> @end
</span><span class="cx"> 
</span><ins>+@implementation WKNavigationResponse (WKPrivate)
+
+- (WKFrameInfo *)_frame
+{
+    return _frame.get();
+}
+
+@end
+
+
</ins><span class="cx"> #endif
</span></span></pre></div>
<a id="trunkSourceWebKit2UIProcessAPICocoaWKNavigationResponseInternalh"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebKit2/UIProcess/API/Cocoa/WKNavigationResponseInternal.h (168580 => 168581)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/UIProcess/API/Cocoa/WKNavigationResponseInternal.h        2014-05-10 19:50:34 UTC (rev 168580)
+++ trunk/Source/WebKit2/UIProcess/API/Cocoa/WKNavigationResponseInternal.h        2014-05-10 20:11:35 UTC (rev 168581)
</span><span class="lines">@@ -23,13 +23,17 @@
</span><span class="cx">  * THE POSSIBILITY OF SUCH DAMAGE.
</span><span class="cx">  */
</span><span class="cx"> 
</span><del>-#import &quot;WKNavigationResponse.h&quot;
</del><ins>+#import &quot;WKNavigationResponsePrivate.h&quot;
</ins><span class="cx"> 
</span><span class="cx"> #if WK_API_ENABLED
</span><span class="cx"> 
</span><del>-@interface WKNavigationResponse ()
</del><ins>+#import &lt;wtf/RetainPtr.h&gt;
</ins><span class="cx"> 
</span><del>-@property (nonatomic, readwrite, strong) WKFrameInfo *frame;
</del><ins>+@interface WKNavigationResponse () {
+@package
+    RetainPtr&lt;WKFrameInfo&gt; _frame;
+}
+
</ins><span class="cx"> @property (nonatomic, readwrite, copy) NSURLResponse *response;
</span><span class="cx"> @property (nonatomic, readwrite) BOOL canShowMIMEType;
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkSourceWebKit2UIProcessAPICocoaWKNavigationResponsePrivatehfromrev168579trunkSourceWebKit2UIProcessAPICocoaWKNavigationResponseInternalh"></a>
<div class="copfile"><h4>Copied: trunk/Source/WebKit2/UIProcess/API/Cocoa/WKNavigationResponsePrivate.h (from rev 168579, trunk/Source/WebKit2/UIProcess/API/Cocoa/WKNavigationResponseInternal.h) (0 => 168581)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/UIProcess/API/Cocoa/WKNavigationResponsePrivate.h                                (rev 0)
+++ trunk/Source/WebKit2/UIProcess/API/Cocoa/WKNavigationResponsePrivate.h        2014-05-10 20:11:35 UTC (rev 168581)
</span><span class="lines">@@ -0,0 +1,36 @@
</span><ins>+/*
+ * Copyright (C) 2014 Apple Inc. All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in the
+ *    documentation and/or other materials provided with the distribution.
+ *
+ * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
+ * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
+ * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
+ * THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#import &lt;WebKit/WKNavigationResponse.h&gt;
+
+#if WK_API_ENABLED
+
+@interface WKNavigationResponse (WKPrivate)
+
+@property (nonatomic, readonly) WKFrameInfo *_frame;
+
+@end
+
+#endif
</ins></span></pre></div>
<a id="trunkSourceWebKit2UIProcessCocoaNavigationStatemm"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebKit2/UIProcess/Cocoa/NavigationState.mm (168580 => 168581)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/UIProcess/Cocoa/NavigationState.mm        2014-05-10 19:50:34 UTC (rev 168580)
+++ trunk/Source/WebKit2/UIProcess/Cocoa/NavigationState.mm        2014-05-10 20:11:35 UTC (rev 168581)
</span><span class="lines">@@ -320,7 +320,7 @@
</span><span class="cx"> 
</span><span class="cx">     auto navigationResponse = adoptNS([[WKNavigationResponse alloc] init]);
</span><span class="cx"> 
</span><del>-    [navigationResponse setFrame:adoptNS([[WKFrameInfo alloc] initWithWebFrameProxy:*frame]).get()];
</del><ins>+    navigationResponse-&gt;_frame = adoptNS([[WKFrameInfo alloc] initWithWebFrameProxy:*frame]);
</ins><span class="cx">     [navigationResponse setResponse:resourceResponse.nsURLResponse()];
</span><span class="cx">     [navigationResponse setCanShowMIMEType:canShowMIMEType];
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkSourceWebKit2WebKit2xcodeprojprojectpbxproj"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebKit2/WebKit2.xcodeproj/project.pbxproj (168580 => 168581)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/WebKit2.xcodeproj/project.pbxproj        2014-05-10 19:50:34 UTC (rev 168580)
+++ trunk/Source/WebKit2/WebKit2.xcodeproj/project.pbxproj        2014-05-10 20:11:35 UTC (rev 168581)
</span><span class="lines">@@ -294,6 +294,7 @@
</span><span class="cx">                 1A9E329F1822FEDD00F5D04C /* WKRemoteObjectCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A9E329D1822FEDD00F5D04C /* WKRemoteObjectCoder.h */; };
</span><span class="cx">                 1A9E32A11823018900F5D04C /* _WKRemoteObjectRegistryInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A9E32A01823018900F5D04C /* _WKRemoteObjectRegistryInternal.h */; };
</span><span class="cx">                 1A9FBA8D13FF04E600DEED67 /* PluginComplexTextInputState.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A9FBA8C13FF04E600DEED67 /* PluginComplexTextInputState.h */; };
</span><ins>+                1AA13212191D5924009C1489 /* WKNavigationResponsePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AA13211191D5924009C1489 /* WKNavigationResponsePrivate.h */; };
</ins><span class="cx">                 1AA20D5118AD50E0005D1ED4 /* WKNavigationDelegatePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AA20D5018AD50E0005D1ED4 /* WKNavigationDelegatePrivate.h */; settings = {ATTRIBUTES = (Private, ); }; };
</span><span class="cx">                 1AA2E51D12E4C05E00BC4966 /* CGUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AA2E51B12E4C05E00BC4966 /* CGUtilities.h */; };
</span><span class="cx">                 1AA2E51E12E4C05E00BC4966 /* CGUtilities.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AA2E51C12E4C05E00BC4966 /* CGUtilities.cpp */; };
</span><span class="lines">@@ -2117,6 +2118,7 @@
</span><span class="cx">                 1A9E329D1822FEDD00F5D04C /* WKRemoteObjectCoder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WKRemoteObjectCoder.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 1A9E32A01823018900F5D04C /* _WKRemoteObjectRegistryInternal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = _WKRemoteObjectRegistryInternal.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 1A9FBA8C13FF04E600DEED67 /* PluginComplexTextInputState.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PluginComplexTextInputState.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><ins>+                1AA13211191D5924009C1489 /* WKNavigationResponsePrivate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WKNavigationResponsePrivate.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</ins><span class="cx">                 1AA1C79A100E7FC50078DEBC /* WebCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = WebCore.framework; sourceTree = BUILT_PRODUCTS_DIR; };
</span><span class="cx">                 1AA1C7DE100E846E0078DEBC /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = JavaScriptCore.framework; sourceTree = BUILT_PRODUCTS_DIR; };
</span><span class="cx">                 1AA1CC5C100FA1A10078DEBC /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = /System/Library/Frameworks/QuartzCore.framework; sourceTree = &quot;&lt;absolute&gt;&quot;; };
</span><span class="lines">@@ -4772,6 +4774,7 @@
</span><span class="cx">                                 1A1B0EB418A424950038481A /* WKNavigationResponse.h */,
</span><span class="cx">                                 1A1B0EB318A424950038481A /* WKNavigationResponse.mm */,
</span><span class="cx">                                 1A1B0EB718A424CD0038481A /* WKNavigationResponseInternal.h */,
</span><ins>+                                1AA13211191D5924009C1489 /* WKNavigationResponsePrivate.h */,
</ins><span class="cx">                                 1AFDD3161891C94700153970 /* WKPreferences.h */,
</span><span class="cx">                                 1AFDD3181891CA1200153970 /* WKPreferences.mm */,
</span><span class="cx">                                 1A3C887F18A5ABAE00C4C962 /* WKPreferencesInternal.h */,
</span><span class="lines">@@ -6790,6 +6793,7 @@
</span><span class="cx">                                 37C4E9F6131C6E7E0029BD5A /* config.h in Headers */,
</span><span class="cx">                                 BC032DAB10F437D10058C15A /* Connection.h in Headers */,
</span><span class="cx">                                 5136183E163126DA00A99DDE /* ConnectionStack.h in Headers */,
</span><ins>+                                1AA13212191D5924009C1489 /* WKNavigationResponsePrivate.h in Headers */,
</ins><span class="cx">                                 1AC1415118AC47EE006C602C /* WKWebViewConfigurationPrivate.h in Headers */,
</span><span class="cx">                                 514D9F5719119D35000063A7 /* ServicesController.h in Headers */,
</span><span class="cx">                                 CDC3830C17212282008A2FC3 /* CookieStorageShimLibrary.h in Headers */,
</span></span></pre>
</div>
</div>

</body>
</html>