<!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>[163332] 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/163332">163332</a></dd>
<dt>Author</dt> <dd>andersca@apple.com</dd>
<dt>Date</dt> <dd>2014-02-03 15:33:20 -0800 (Mon, 03 Feb 2014)</dd>
</dl>

<h3>Log Message</h3>
<pre>NavigationState should be a PageLoadState::Observer
https://bugs.webkit.org/show_bug.cgi?id=128130

Reviewed by Darin Adler.

This will make it easier to provide load related KVO properties on WKWebView.

* UIProcess/API/Cocoa/WKWebView.mm:
(-[WKWebView initWithFrame:configuration:]):
* UIProcess/API/Cocoa/WKWebViewInternal.h: Added.
* UIProcess/Cocoa/NavigationState.h:
* UIProcess/Cocoa/NavigationState.mm:
(WebKit::NavigationState::NavigationState):
(WebKit::NavigationState::~NavigationState):
(WebKit::NavigationState::willChangeIsLoading):
(WebKit::NavigationState::didChangeIsLoading):
(WebKit::NavigationState::willChangeTitle):
(WebKit::NavigationState::didChangeTitle):
(WebKit::NavigationState::willChangeActiveURL):
(WebKit::NavigationState::didChangeActiveURL):
(WebKit::NavigationState::willChangeHasOnlySecureContent):
(WebKit::NavigationState::didChangeHasOnlySecureContent):
(WebKit::NavigationState::willChangeEstimatedProgress):
(WebKit::NavigationState::didChangeEstimatedProgress):
* WebKit2.xcodeproj/project.pbxproj:</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkSourceWebKit2ChangeLog">trunk/Source/WebKit2/ChangeLog</a></li>
<li><a href="#trunkSourceWebKit2UIProcessAPICocoaWKWebViewmm">trunk/Source/WebKit2/UIProcess/API/Cocoa/WKWebView.mm</a></li>
<li><a href="#trunkSourceWebKit2UIProcessCocoaNavigationStateh">trunk/Source/WebKit2/UIProcess/Cocoa/NavigationState.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="#trunkSourceWebKit2UIProcessAPICocoaWKWebViewInternalh">trunk/Source/WebKit2/UIProcess/API/Cocoa/WKWebViewInternal.h</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkSourceWebKit2ChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebKit2/ChangeLog (163331 => 163332)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/ChangeLog        2014-02-03 23:27:19 UTC (rev 163331)
+++ trunk/Source/WebKit2/ChangeLog        2014-02-03 23:33:20 UTC (rev 163332)
</span><span class="lines">@@ -1,3 +1,31 @@
</span><ins>+2014-02-03  Anders Carlsson  &lt;andersca@apple.com&gt;
+
+        NavigationState should be a PageLoadState::Observer
+        https://bugs.webkit.org/show_bug.cgi?id=128130
+
+        Reviewed by Darin Adler.
+
+        This will make it easier to provide load related KVO properties on WKWebView.
+
+        * UIProcess/API/Cocoa/WKWebView.mm:
+        (-[WKWebView initWithFrame:configuration:]):
+        * UIProcess/API/Cocoa/WKWebViewInternal.h: Added.
+        * UIProcess/Cocoa/NavigationState.h:
+        * UIProcess/Cocoa/NavigationState.mm:
+        (WebKit::NavigationState::NavigationState):
+        (WebKit::NavigationState::~NavigationState):
+        (WebKit::NavigationState::willChangeIsLoading):
+        (WebKit::NavigationState::didChangeIsLoading):
+        (WebKit::NavigationState::willChangeTitle):
+        (WebKit::NavigationState::didChangeTitle):
+        (WebKit::NavigationState::willChangeActiveURL):
+        (WebKit::NavigationState::didChangeActiveURL):
+        (WebKit::NavigationState::willChangeHasOnlySecureContent):
+        (WebKit::NavigationState::didChangeHasOnlySecureContent):
+        (WebKit::NavigationState::willChangeEstimatedProgress):
+        (WebKit::NavigationState::didChangeEstimatedProgress):
+        * WebKit2.xcodeproj/project.pbxproj:
+
</ins><span class="cx"> 2014-02-03  Tim Horton  &lt;timothy_horton@apple.com&gt;
</span><span class="cx"> 
</span><span class="cx">         WebKit2 View Gestures: Two smart magnifications in a row without moving the mouse should zoom out
</span></span></pre></div>
<a id="trunkSourceWebKit2UIProcessAPICocoaWKWebViewmm"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebKit2/UIProcess/API/Cocoa/WKWebView.mm (163331 => 163332)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/UIProcess/API/Cocoa/WKWebView.mm        2014-02-03 23:27:19 UTC (rev 163331)
+++ trunk/Source/WebKit2/UIProcess/API/Cocoa/WKWebView.mm        2014-02-03 23:33:20 UTC (rev 163332)
</span><span class="lines">@@ -24,7 +24,7 @@
</span><span class="cx">  */
</span><span class="cx"> 
</span><span class="cx"> #import &quot;config.h&quot;
</span><del>-#import &quot;WKWebView.h&quot;
</del><ins>+#import &quot;WKWebViewInternal.h&quot;
</ins><span class="cx"> 
</span><span class="cx"> #if WK_API_ENABLED
</span><span class="cx"> 
</span><span class="lines">@@ -37,18 +37,13 @@
</span><span class="cx"> #import &lt;wtf/RetainPtr.h&gt;
</span><span class="cx"> 
</span><span class="cx"> #if PLATFORM(IOS)
</span><del>-#import &quot;WKContentViewInternal.h&quot;
</del><span class="cx"> #import &quot;WKScrollView.h&quot;
</span><del>-#import &lt;UIKit/UIScrollView_Private.h&gt;
-#import &lt;UIKit/_UIWebViewportHandler.h&gt;
</del><span class="cx"> 
</span><span class="cx"> static const float minWebViewScale = 0.25;
</span><span class="cx"> static const float maxWebViewScale = 5;
</span><span class="cx"> static _UIWebViewportConfiguration standardViewportConfiguration = { { UIWebViewportStandardViewportWidth, UIWebViewportGrowsAndShrinksToFitHeight }, UIWebViewportScaleForScalesToFit, minWebViewScale, maxWebViewScale, true
</span><span class="cx"> };
</span><span class="cx"> 
</span><del>-@interface WKWebView () &lt;UIScrollViewDelegate, WKContentViewDelegate, _UIWebViewportHandlerDelegate&gt;
-@end
</del><span class="cx"> #endif
</span><span class="cx"> 
</span><span class="cx"> #if PLATFORM(MAC) &amp;&amp; !PLATFORM(IOS)
</span><span class="lines">@@ -59,8 +54,6 @@
</span><span class="cx">     RetainPtr&lt;WKWebViewConfiguration&gt; _configuration;
</span><span class="cx">     std::unique_ptr&lt;WebKit::NavigationState&gt; _navigationState;
</span><span class="cx"> 
</span><del>-    RefPtr&lt;WebKit::WebPageProxy&gt; _page;
-
</del><span class="cx"> #if PLATFORM(IOS)
</span><span class="cx">     RetainPtr&lt;WKScrollView&gt; _scrollView;
</span><span class="cx">     RetainPtr&lt;WKContentView&gt; _contentView;
</span><span class="lines">@@ -89,8 +82,6 @@
</span><span class="cx">     if (![_configuration processClass])
</span><span class="cx">         [_configuration setProcessClass:adoptNS([[WKProcessClass alloc] init]).get()];
</span><span class="cx"> 
</span><del>-    _navigationState = std::make_unique&lt;WebKit::NavigationState&gt;(self);
-
</del><span class="cx">     CGRect bounds = self.bounds;
</span><span class="cx"> 
</span><span class="cx"> #if PLATFORM(IOS)
</span><span class="lines">@@ -119,6 +110,7 @@
</span><span class="cx">     _page = WebKit::toImpl([_wkView pageRef]);
</span><span class="cx"> #endif
</span><span class="cx"> 
</span><ins>+    _navigationState = std::make_unique&lt;WebKit::NavigationState&gt;(self);
</ins><span class="cx">     _page-&gt;setPolicyClient(_navigationState-&gt;createPolicyClient());
</span><span class="cx">     _page-&gt;setLoaderClient(_navigationState-&gt;createLoaderClient());
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkSourceWebKit2UIProcessAPICocoaWKWebViewInternalh"></a>
<div class="addfile"><h4>Added: trunk/Source/WebKit2/UIProcess/API/Cocoa/WKWebViewInternal.h (0 => 163332)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/UIProcess/API/Cocoa/WKWebViewInternal.h                                (rev 0)
+++ trunk/Source/WebKit2/UIProcess/API/Cocoa/WKWebViewInternal.h        2014-02-03 23:33:20 UTC (rev 163332)
</span><span class="lines">@@ -0,0 +1,57 @@
</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 &quot;WKWebView.h&quot;
+
+#if WK_API_ENABLED
+
+#import &lt;wtf/RefPtr.h&gt;
+
+#if PLATFORM(IOS)
+#import &quot;WKContentViewInternal.h&quot;
+#import &lt;UIKit/UIScrollView_Private.h&gt;
+#import &lt;UIKit/_UIWebViewportHandler.h&gt;
+#endif
+
+#if PLATFORM(IOS)
+#define WK_WEB_VIEW_PROTOCOLS &lt;UIScrollViewDelegate, WKContentViewDelegate, _UIWebViewportHandlerDelegate&gt;
+#endif
+
+#if !defined(WK_WEB_VIEW_PROTOCOLS)
+#define WK_WEB_VIEW_PROTOCOLS
+#endif
+
+namespace WebKit {
+class WebPageProxy;
+}
+
+@interface WKWebView () WK_WEB_VIEW_PROTOCOLS {
+
+@package
+    RefPtr&lt;WebKit::WebPageProxy&gt; _page;
+}
+@end
+
+#endif
</ins></span></pre></div>
<a id="trunkSourceWebKit2UIProcessCocoaNavigationStateh"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebKit2/UIProcess/Cocoa/NavigationState.h (163331 => 163332)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/UIProcess/Cocoa/NavigationState.h        2014-02-03 23:27:19 UTC (rev 163331)
+++ trunk/Source/WebKit2/UIProcess/Cocoa/NavigationState.h        2014-02-03 23:33:20 UTC (rev 163332)
</span><span class="lines">@@ -34,6 +34,7 @@
</span><span class="cx"> #import &lt;wtf/RetainPtr.h&gt;
</span><span class="cx"> #import &quot;APILoaderClient.h&quot;
</span><span class="cx"> #import &quot;APIPolicyClient.h&quot;
</span><ins>+#import &quot;PageLoadState.h&quot;
</ins><span class="cx"> #import &quot;WeakObjCPtr.h&quot;
</span><span class="cx"> 
</span><span class="cx"> @class WKNavigation;
</span><span class="lines">@@ -42,7 +43,7 @@
</span><span class="cx"> 
</span><span class="cx"> namespace WebKit {
</span><span class="cx"> 
</span><del>-class NavigationState {
</del><ins>+class NavigationState : private PageLoadState::Observer {
</ins><span class="cx"> public:
</span><span class="cx">     explicit NavigationState(WKWebView *);
</span><span class="cx">     ~NavigationState();
</span><span class="lines">@@ -86,6 +87,21 @@
</span><span class="cx">         NavigationState&amp; m_navigationState;
</span><span class="cx">     };
</span><span class="cx"> 
</span><ins>+    // PageLoadState::Observer
+    virtual void willChangeIsLoading() override;
+    virtual void didChangeIsLoading() override;
+    virtual void willChangeTitle() override;
+    virtual void didChangeTitle() override;
+    virtual void willChangeActiveURL() override;
+    virtual void didChangeActiveURL() override;
+    virtual void willChangeHasOnlySecureContent() override;
+    virtual void didChangeHasOnlySecureContent() override;
+    virtual void willChangeEstimatedProgress() override;
+    virtual void didChangeEstimatedProgress() override;
+
+    WKWebView *m_webView;
+    WeakObjCPtr&lt;id &lt;WKNavigationDelegate&gt; &gt; m_navigationDelegate;
+
</ins><span class="cx">     struct {
</span><span class="cx">         bool webViewDecidePolicyForNavigationActionDecisionHandler : 1;
</span><span class="cx">         bool webViewDecidePolicyForNavigationResponseDecisionHandler : 1;
</span><span class="lines">@@ -98,9 +114,6 @@
</span><span class="cx">         bool webViewDidFailNavigationWithError : 1;
</span><span class="cx">     } m_navigationDelegateMethods;
</span><span class="cx"> 
</span><del>-    WKWebView *m_webView;
-    WeakObjCPtr&lt;id &lt;WKNavigationDelegate&gt; &gt; m_navigationDelegate;
-
</del><span class="cx">     HashMap&lt;uint64_t, RetainPtr&lt;WKNavigation&gt;&gt; m_navigations;
</span><span class="cx"> };
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkSourceWebKit2UIProcessCocoaNavigationStatemm"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebKit2/UIProcess/Cocoa/NavigationState.mm (163331 => 163332)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/UIProcess/Cocoa/NavigationState.mm        2014-02-03 23:27:19 UTC (rev 163331)
+++ trunk/Source/WebKit2/UIProcess/Cocoa/NavigationState.mm        2014-02-03 23:33:20 UTC (rev 163332)
</span><span class="lines">@@ -30,17 +30,25 @@
</span><span class="cx"> 
</span><span class="cx"> #import &quot;WKNavigationDelegate.h&quot;
</span><span class="cx"> #import &quot;WKNavigationInternal.h&quot;
</span><ins>+#import &quot;WKWebViewInternal.h&quot;
+#import &quot;PageLoadState.h&quot;
</ins><span class="cx"> #import &quot;WebFrameProxy.h&quot;
</span><ins>+#import &quot;WebPageProxy.h&quot;
</ins><span class="cx"> 
</span><span class="cx"> namespace WebKit {
</span><span class="cx"> 
</span><span class="cx"> NavigationState::NavigationState(WKWebView *webView)
</span><del>-    : m_navigationDelegateMethods()
</del><ins>+    : m_webView(webView)
+    , m_navigationDelegateMethods()
</ins><span class="cx"> {
</span><ins>+    ASSERT(m_webView-&gt;_page);
+
+    m_webView-&gt;_page-&gt;pageLoadState().addObserver(*this);
</ins><span class="cx"> }
</span><span class="cx"> 
</span><span class="cx"> NavigationState::~NavigationState()
</span><span class="cx"> {
</span><ins>+    m_webView-&gt;_page-&gt;pageLoadState().removeObserver(*this);
</ins><span class="cx"> }
</span><span class="cx"> 
</span><span class="cx"> std::unique_ptr&lt;API::LoaderClient&gt; NavigationState::createLoaderClient()
</span><span class="lines">@@ -295,6 +303,46 @@
</span><span class="cx">     [navigationDelegate webView:m_navigationState.m_webView didFailNavigation:navigation withError:error];
</span><span class="cx"> }
</span><span class="cx"> 
</span><ins>+void NavigationState::willChangeIsLoading()
+{
+}
+
+void NavigationState::didChangeIsLoading()
+{
+}
+
+void NavigationState::willChangeTitle()
+{
+}
+
+void NavigationState::didChangeTitle()
+{
+}
+
+void NavigationState::willChangeActiveURL()
+{
+}
+
+void NavigationState::didChangeActiveURL()
+{
+}
+
+void NavigationState::willChangeHasOnlySecureContent()
+{
+}
+
+void NavigationState::didChangeHasOnlySecureContent()
+{
+}
+
+void NavigationState::willChangeEstimatedProgress()
+{
+}
+
+void NavigationState::didChangeEstimatedProgress()
+{
+}
+
</ins><span class="cx"> } // namespace WebKit
</span><span class="cx"> 
</span><span class="cx"> #endif
</span></span></pre></div>
<a id="trunkSourceWebKit2WebKit2xcodeprojprojectpbxproj"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebKit2/WebKit2.xcodeproj/project.pbxproj (163331 => 163332)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/WebKit2.xcodeproj/project.pbxproj        2014-02-03 23:27:19 UTC (rev 163331)
+++ trunk/Source/WebKit2/WebKit2.xcodeproj/project.pbxproj        2014-02-03 23:33:20 UTC (rev 163332)
</span><span class="lines">@@ -190,6 +190,7 @@
</span><span class="cx">                 1A64230912DD09EB00CAAE2C /* DrawingAreaProxyMessages.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A64230712DD09EB00CAAE2C /* DrawingAreaProxyMessages.h */; };
</span><span class="cx">                 1A64245E12DE29A100CAAE2C /* UpdateInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A64245C12DE29A100CAAE2C /* UpdateInfo.h */; };
</span><span class="cx">                 1A64245F12DE29A100CAAE2C /* UpdateInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A64245D12DE29A100CAAE2C /* UpdateInfo.cpp */; };
</span><ins>+                1A66BF8F18A052ED002071B4 /* WKWebViewInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A66BF8E18A052ED002071B4 /* WKWebViewInternal.h */; };
</ins><span class="cx">                 1A6F9F9011E13EFC00DB1371 /* CommandLine.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A6F9F8E11E13EFC00DB1371 /* CommandLine.h */; };
</span><span class="cx">                 1A6F9FB711E1408500DB1371 /* CommandLineMac.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A6F9FB611E1408500DB1371 /* CommandLineMac.cpp */; };
</span><span class="cx">                 1A6FB7AE11E64B6800DB1371 /* PluginView.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A6FB7AC11E64B6800DB1371 /* PluginView.cpp */; };
</span><span class="lines">@@ -1837,6 +1838,7 @@
</span><span class="cx">                 1A64230712DD09EB00CAAE2C /* DrawingAreaProxyMessages.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DrawingAreaProxyMessages.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 1A64245C12DE29A100CAAE2C /* UpdateInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UpdateInfo.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 1A64245D12DE29A100CAAE2C /* UpdateInfo.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UpdateInfo.cpp; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><ins>+                1A66BF8E18A052ED002071B4 /* WKWebViewInternal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WKWebViewInternal.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</ins><span class="cx">                 1A6F9F8E11E13EFC00DB1371 /* CommandLine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CommandLine.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 1A6F9FB611E1408500DB1371 /* CommandLineMac.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CommandLineMac.cpp; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 1A6FB7AC11E64B6800DB1371 /* PluginView.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = PluginView.cpp; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="lines">@@ -4295,6 +4297,7 @@
</span><span class="cx">                                 1A3CC16418906ACF001E6ED8 /* WKWebView.mm */,
</span><span class="cx">                                 1ADF59191890528E0043C145 /* WKWebViewConfiguration.h */,
</span><span class="cx">                                 1ADF59181890528E0043C145 /* WKWebViewConfiguration.mm */,
</span><ins>+                                1A66BF8E18A052ED002071B4 /* WKWebViewInternal.h */,
</ins><span class="cx">                         );
</span><span class="cx">                         path = Cocoa;
</span><span class="cx">                         sourceTree = &quot;&lt;group&gt;&quot;;
</span><span class="lines">@@ -6773,6 +6776,7 @@
</span><span class="cx">                                 BC407606124FF0270068F20A /* WKString.h in Headers */,
</span><span class="cx">                                 7C9D1537184584DA009D3918 /* WKBrowsingContextGroupInternal.h in Headers */,
</span><span class="cx">                                 373CEAD81859553F008C363D /* WKPagePolicyClientInternal.h in Headers */,
</span><ins>+                                1A66BF8F18A052ED002071B4 /* WKWebViewInternal.h in Headers */,
</ins><span class="cx">                                 BC40761A124FF0370068F20A /* WKStringCF.h in Headers */,
</span><span class="cx">                                 759CCD591808F1690078E8A8 /* WebOriginDataManagerProxyChangeClient.h in Headers */,
</span><span class="cx">                                 BC9099801256A98200083756 /* WKStringPrivate.h in Headers */,
</span></span></pre>
</div>
</div>

</body>
</html>