<!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>[177662] 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/177662">177662</a></dd>
<dt>Author</dt> <dd>andersca@apple.com</dd>
<dt>Date</dt> <dd>2014-12-22 15:56:22 -0800 (Mon, 22 Dec 2014)</dd>
</dl>

<h3>Log Message</h3>
<pre>Add an API::PageGroupHandle object
https://bugs.webkit.org/show_bug.cgi?id=139881

Reviewed by Sam Weinig.

API::PageGroupHandle won't be exposed to any API, it will only be used to facilitate passing page groups
between the UI and web process inside UserData objects.

* Shared/API/APIObject.h:
* Shared/API/APIPageGroupHandle.cpp: Added.
(API::PageGroupHandle::create):
(API::PageGroupHandle::~PageGroupHandle):
(API::PageGroupHandle::PageGroupHandle):
* Shared/API/APIPageGroupHandle.h: Added.
(API::PageGroupHandle::webPageGroupData):
* Shared/UserData.cpp:
(WebKit::UserData::UserData):
(WebKit::UserData::encode):
(WebKit::UserData::decode):
* Shared/UserData.h:
* UIProcess/WebPageGroup.h:
(WebKit::WebPageGroup::data):
* UIProcess/WebProcessProxy.cpp:
(WebKit::WebProcessProxy::apiObjectByConvertingToHandles):
* WebKit2.xcodeproj/project.pbxproj:</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkSourceWebKit2ChangeLog">trunk/Source/WebKit2/ChangeLog</a></li>
<li><a href="#trunkSourceWebKit2SharedAPIAPIObjecth">trunk/Source/WebKit2/Shared/API/APIObject.h</a></li>
<li><a href="#trunkSourceWebKit2SharedUserDatacpp">trunk/Source/WebKit2/Shared/UserData.cpp</a></li>
<li><a href="#trunkSourceWebKit2SharedUserDatah">trunk/Source/WebKit2/Shared/UserData.h</a></li>
<li><a href="#trunkSourceWebKit2UIProcessWebPageGrouph">trunk/Source/WebKit2/UIProcess/WebPageGroup.h</a></li>
<li><a href="#trunkSourceWebKit2UIProcessWebProcessProxycpp">trunk/Source/WebKit2/UIProcess/WebProcessProxy.cpp</a></li>
<li><a href="#trunkSourceWebKit2WebKit2xcodeprojprojectpbxproj">trunk/Source/WebKit2/WebKit2.xcodeproj/project.pbxproj</a></li>
</ul>

<h3>Added Paths</h3>
<ul>
<li><a href="#trunkSourceWebKit2SharedAPIAPIPageGroupHandlecpp">trunk/Source/WebKit2/Shared/API/APIPageGroupHandle.cpp</a></li>
<li><a href="#trunkSourceWebKit2SharedAPIAPIPageGroupHandleh">trunk/Source/WebKit2/Shared/API/APIPageGroupHandle.h</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkSourceWebKit2ChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebKit2/ChangeLog (177661 => 177662)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/ChangeLog        2014-12-22 23:42:30 UTC (rev 177661)
+++ trunk/Source/WebKit2/ChangeLog        2014-12-22 23:56:22 UTC (rev 177662)
</span><span class="lines">@@ -1,3 +1,31 @@
</span><ins>+2014-12-22  Anders Carlsson  &lt;andersca@apple.com&gt;
+
+        Add an API::PageGroupHandle object
+        https://bugs.webkit.org/show_bug.cgi?id=139881
+
+        Reviewed by Sam Weinig.
+
+        API::PageGroupHandle won't be exposed to any API, it will only be used to facilitate passing page groups
+        between the UI and web process inside UserData objects.
+
+        * Shared/API/APIObject.h:
+        * Shared/API/APIPageGroupHandle.cpp: Added.
+        (API::PageGroupHandle::create):
+        (API::PageGroupHandle::~PageGroupHandle):
+        (API::PageGroupHandle::PageGroupHandle):
+        * Shared/API/APIPageGroupHandle.h: Added.
+        (API::PageGroupHandle::webPageGroupData):
+        * Shared/UserData.cpp:
+        (WebKit::UserData::UserData):
+        (WebKit::UserData::encode):
+        (WebKit::UserData::decode):
+        * Shared/UserData.h:
+        * UIProcess/WebPageGroup.h:
+        (WebKit::WebPageGroup::data):
+        * UIProcess/WebProcessProxy.cpp:
+        (WebKit::WebProcessProxy::apiObjectByConvertingToHandles):
+        * WebKit2.xcodeproj/project.pbxproj:
+
</ins><span class="cx"> 2014-12-22  Daniel Bates  &lt;dabates@apple.com&gt;
</span><span class="cx"> 
</span><span class="cx">         Fix the iOS build after &lt;https://trac.webkit.org/changeset/177639&gt;
</span></span></pre></div>
<a id="trunkSourceWebKit2SharedAPIAPIObjecth"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebKit2/Shared/API/APIObject.h (177661 => 177662)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/Shared/API/APIObject.h        2014-12-22 23:42:30 UTC (rev 177661)
+++ trunk/Source/WebKit2/Shared/API/APIObject.h        2014-12-22 23:56:22 UTC (rev 177662)
</span><span class="lines">@@ -69,6 +69,7 @@
</span><span class="cx">         Image,
</span><span class="cx">         PageGroupData,
</span><span class="cx">         PageHandle,
</span><ins>+        PageGroupHandle,
</ins><span class="cx">         ProtectionSpace,
</span><span class="cx">         RenderLayer,
</span><span class="cx">         RenderObject,
</span></span></pre></div>
<a id="trunkSourceWebKit2SharedAPIAPIPageGroupHandlecppfromrev177661trunkSourceWebKit2SharedUserDatah"></a>
<div class="copfile"><h4>Copied: trunk/Source/WebKit2/Shared/API/APIPageGroupHandle.cpp (from rev 177661, trunk/Source/WebKit2/Shared/UserData.h) (0 => 177662)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/Shared/API/APIPageGroupHandle.cpp                                (rev 0)
+++ trunk/Source/WebKit2/Shared/API/APIPageGroupHandle.cpp        2014-12-22 23:56:22 UTC (rev 177662)
</span><span class="lines">@@ -0,0 +1,45 @@
</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.
+ */
+
+#include &quot;config.h&quot;
+#include &quot;APIPageGroupHandle.h&quot;
+
+namespace API {
+
+Ref&lt;PageGroupHandle&gt; PageGroupHandle::create(WebKit::WebPageGroupData&amp;&amp; webPageGroupData)
+{
+    return adoptRef(*new PageGroupHandle(WTF::move(webPageGroupData)));
+}
+
+PageGroupHandle::~PageGroupHandle()
+{
+}
+
+PageGroupHandle::PageGroupHandle(WebKit::WebPageGroupData&amp;&amp; webPageGroupData)
+    : m_webPageGroupData(WTF::move(webPageGroupData))
+{
+}
+
+}
</ins></span></pre></div>
<a id="trunkSourceWebKit2SharedAPIAPIPageGroupHandlehfromrev177661trunkSourceWebKit2SharedUserDatah"></a>
<div class="copfile"><h4>Copied: trunk/Source/WebKit2/Shared/API/APIPageGroupHandle.h (from rev 177661, trunk/Source/WebKit2/Shared/UserData.h) (0 => 177662)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/Shared/API/APIPageGroupHandle.h                                (rev 0)
+++ trunk/Source/WebKit2/Shared/API/APIPageGroupHandle.h        2014-12-22 23:56:22 UTC (rev 177662)
</span><span class="lines">@@ -0,0 +1,51 @@
</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.
+ */
+
+#ifndef APIPageGroupHandle_h
+#define APIPageGroupHandle_h
+
+#include &quot;APIObject.h&quot;
+#include &quot;WebPageGroupData.h&quot;
+#include &lt;wtf/RefPtr.h&gt;
+
+namespace API {
+
+class PageGroupHandle : public ObjectImpl&lt;Object::Type::PageGroupHandle&gt; {
+public:
+    static Ref&lt;PageGroupHandle&gt; create(WebKit::WebPageGroupData&amp;&amp;);
+    virtual ~PageGroupHandle();
+
+    const WebKit::WebPageGroupData&amp; webPageGroupData() const { return m_webPageGroupData; }
+
+private:
+    explicit PageGroupHandle(WebKit::WebPageGroupData&amp;&amp;);
+
+    const WebKit::WebPageGroupData m_webPageGroupData;
+};
+
+} // namespace API
+
+
+#endif // APIPageGroupHandle_h
</ins></span></pre></div>
<a id="trunkSourceWebKit2SharedUserDatacpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebKit2/Shared/UserData.cpp (177661 => 177662)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/Shared/UserData.cpp        2014-12-22 23:42:30 UTC (rev 177661)
+++ trunk/Source/WebKit2/Shared/UserData.cpp        2014-12-22 23:56:22 UTC (rev 177662)
</span><span class="lines">@@ -32,6 +32,7 @@
</span><span class="cx"> #include &quot;APIFrameHandle.h&quot;
</span><span class="cx"> #include &quot;APIGeometry.h&quot;
</span><span class="cx"> #include &quot;APINumber.h&quot;
</span><ins>+#include &quot;APIPageGroupHandle.h&quot;
</ins><span class="cx"> #include &quot;APISerializedScriptValue.h&quot;
</span><span class="cx"> #include &quot;APIString.h&quot;
</span><span class="cx"> #include &quot;APIURL.h&quot;
</span><span class="lines">@@ -43,11 +44,15 @@
</span><span class="cx"> 
</span><span class="cx"> namespace WebKit {
</span><span class="cx"> 
</span><del>-UserData::UserData(API::Object* object)
-    : m_object(object)
</del><ins>+UserData::UserData()
</ins><span class="cx"> {
</span><span class="cx"> }
</span><span class="cx"> 
</span><ins>+UserData::UserData(RefPtr&lt;API::Object&gt;&amp;&amp; object)
+    : m_object(WTF::move(object))
+{
+}
+
</ins><span class="cx"> UserData::~UserData()
</span><span class="cx"> {
</span><span class="cx"> }
</span><span class="lines">@@ -152,6 +157,12 @@
</span><span class="cx">         break;
</span><span class="cx">     }
</span><span class="cx"> 
</span><ins>+    case API::Object::Type::PageGroupHandle: {
+        auto&amp; pageGroupHandle = static_cast&lt;const API::PageGroupHandle&amp;&gt;(object);
+        encoder &lt;&lt; pageGroupHandle.webPageGroupData();
+        break;
+    }
+
</ins><span class="cx">     case API::Object::Type::Point:
</span><span class="cx">         static_cast&lt;const API::Point&amp;&gt;(object).encode(encoder);
</span><span class="cx">         break;
</span><span class="lines">@@ -278,7 +289,17 @@
</span><span class="cx">     case API::Object::Type::Null:
</span><span class="cx">         result = nullptr;
</span><span class="cx">         break;
</span><del>-        
</del><ins>+
+    case API::Object::Type::PageGroupHandle: {
+        WebKit::WebPageGroupData webPageGroupData;
+        if (!decoder.decode(webPageGroupData))
+            return false;
+        break;
+
+        result = API::PageGroupHandle::create(WTF::move(webPageGroupData));
+        break;
+    }
+
</ins><span class="cx">     case API::Object::Type::Point:
</span><span class="cx">         if (!API::Point::decode(decoder, result))
</span><span class="cx">             return false;
</span></span></pre></div>
<a id="trunkSourceWebKit2SharedUserDatah"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebKit2/Shared/UserData.h (177661 => 177662)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/Shared/UserData.h        2014-12-22 23:42:30 UTC (rev 177661)
+++ trunk/Source/WebKit2/Shared/UserData.h        2014-12-22 23:56:22 UTC (rev 177662)
</span><span class="lines">@@ -42,7 +42,8 @@
</span><span class="cx"> 
</span><span class="cx"> class UserData {
</span><span class="cx"> public:
</span><del>-    explicit UserData(API::Object* = nullptr);
</del><ins>+    UserData();
+    explicit UserData(RefPtr&lt;API::Object&gt;&amp;&amp;);
</ins><span class="cx">     ~UserData();
</span><span class="cx"> 
</span><span class="cx">     static RefPtr&lt;API::Object&gt; transform(API::Object*, const std::function&lt;RefPtr&lt;API::Object&gt; (const API::Object&amp;)&gt; transformer);
</span></span></pre></div>
<a id="trunkSourceWebKit2UIProcessWebPageGrouph"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebKit2/UIProcess/WebPageGroup.h (177661 => 177662)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/UIProcess/WebPageGroup.h        2014-12-22 23:42:30 UTC (rev 177661)
+++ trunk/Source/WebKit2/UIProcess/WebPageGroup.h        2014-12-22 23:56:22 UTC (rev 177662)
</span><span class="lines">@@ -53,7 +53,7 @@
</span><span class="cx">     const String&amp; identifier() const { return m_data.identifer; }
</span><span class="cx">     uint64_t pageGroupID() const { return m_data.pageGroupID; }
</span><span class="cx"> 
</span><del>-    const WebPageGroupData&amp; data() { return m_data; }
</del><ins>+    const WebPageGroupData&amp; data() const { return m_data; }
</ins><span class="cx"> 
</span><span class="cx">     void setPreferences(WebPreferences*);
</span><span class="cx">     WebPreferences&amp; preferences() const;
</span></span></pre></div>
<a id="trunkSourceWebKit2UIProcessWebProcessProxycpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebKit2/UIProcess/WebProcessProxy.cpp (177661 => 177662)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/UIProcess/WebProcessProxy.cpp        2014-12-22 23:42:30 UTC (rev 177661)
+++ trunk/Source/WebKit2/UIProcess/WebProcessProxy.cpp        2014-12-22 23:56:22 UTC (rev 177662)
</span><span class="lines">@@ -27,6 +27,7 @@
</span><span class="cx"> #include &quot;WebProcessProxy.h&quot;
</span><span class="cx"> 
</span><span class="cx"> #include &quot;APIFrameHandle.h&quot;
</span><ins>+#include &quot;APIPageGroupHandle.h&quot;
</ins><span class="cx"> #include &quot;CustomProtocolManagerProxyMessages.h&quot;
</span><span class="cx"> #include &quot;DataReference.h&quot;
</span><span class="cx"> #include &quot;DownloadProxyMap.h&quot;
</span><span class="lines">@@ -657,6 +658,11 @@
</span><span class="cx">             return API::FrameHandle::create(frame.frameID());
</span><span class="cx">         }
</span><span class="cx"> 
</span><ins>+        case API::Object::Type::PageGroup: {
+            auto&amp; pageGroup = static_cast&lt;const WebPageGroup&amp;&gt;(object);
+            return API::PageGroupHandle::create(WebPageGroupData(pageGroup.data()));
+        }
+
</ins><span class="cx">         default:
</span><span class="cx">             return nullptr;
</span><span class="cx">         }
</span></span></pre></div>
<a id="trunkSourceWebKit2WebKit2xcodeprojprojectpbxproj"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebKit2/WebKit2.xcodeproj/project.pbxproj (177661 => 177662)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/WebKit2.xcodeproj/project.pbxproj        2014-12-22 23:42:30 UTC (rev 177661)
+++ trunk/Source/WebKit2/WebKit2.xcodeproj/project.pbxproj        2014-12-22 23:56:22 UTC (rev 177662)
</span><span class="lines">@@ -215,6 +215,8 @@
</span><span class="cx">                 1A3635A91A3144A300ED6197 /* APIWebsiteDataStore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A3635A71A3144A300ED6197 /* APIWebsiteDataStore.cpp */; };
</span><span class="cx">                 1A3635AA1A3144A300ED6197 /* APIWebsiteDataStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A3635A81A3144A300ED6197 /* APIWebsiteDataStore.h */; };
</span><span class="cx">                 1A3635AD1A3145E500ED6197 /* APIWebsiteDataStoreCocoa.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1A3635AB1A3145E500ED6197 /* APIWebsiteDataStoreCocoa.mm */; };
</span><ins>+                1A3A73CE1A48C6D4007231B3 /* APIPageGroupHandle.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A3A73CC1A48C6D4007231B3 /* APIPageGroupHandle.h */; };
+                1A3A73CF1A48C7F1007231B3 /* APIPageGroupHandle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A3A73CB1A48C6D4007231B3 /* APIPageGroupHandle.cpp */; };
</ins><span class="cx">                 1A3C888018A5ABAE00C4C962 /* WKPreferencesInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A3C887F18A5ABAE00C4C962 /* WKPreferencesInternal.h */; };
</span><span class="cx">                 1A3CC16618906ACF001E6ED8 /* WKWebView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1A3CC16418906ACF001E6ED8 /* WKWebView.mm */; };
</span><span class="cx">                 1A3CC16718906ACF001E6ED8 /* WKWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A3CC16518906ACF001E6ED8 /* WKWebView.h */; settings = {ATTRIBUTES = (Public, ); }; };
</span><span class="lines">@@ -2208,6 +2210,8 @@
</span><span class="cx">                 1A3635A71A3144A300ED6197 /* APIWebsiteDataStore.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = APIWebsiteDataStore.cpp; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 1A3635A81A3144A300ED6197 /* APIWebsiteDataStore.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APIWebsiteDataStore.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 1A3635AB1A3145E500ED6197 /* APIWebsiteDataStoreCocoa.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = APIWebsiteDataStoreCocoa.mm; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><ins>+                1A3A73CB1A48C6D4007231B3 /* APIPageGroupHandle.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = APIPageGroupHandle.cpp; sourceTree = &quot;&lt;group&gt;&quot;; };
+                1A3A73CC1A48C6D4007231B3 /* APIPageGroupHandle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = APIPageGroupHandle.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</ins><span class="cx">                 1A3C887F18A5ABAE00C4C962 /* WKPreferencesInternal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WKPreferencesInternal.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 1A3CC16418906ACF001E6ED8 /* WKWebView.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = WKWebView.mm; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="cx">                 1A3CC16518906ACF001E6ED8 /* WKWebView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WKWebView.h; sourceTree = &quot;&lt;group&gt;&quot;; };
</span><span class="lines">@@ -6776,6 +6780,8 @@
</span><span class="cx">                                 BCF04C8C11FF9B7D00F86A58 /* APIObject.h */,
</span><span class="cx">                                 1AC1336D18565D2B00F3EC05 /* APIPageHandle.cpp */,
</span><span class="cx">                                 1AC1336B18565C7A00F3EC05 /* APIPageHandle.h */,
</span><ins>+                                1A3A73CB1A48C6D4007231B3 /* APIPageGroupHandle.cpp */,
+                                1A3A73CC1A48C6D4007231B3 /* APIPageGroupHandle.h */,
</ins><span class="cx">                                 F634445512A885C8000612D8 /* APISecurityOrigin.h */,
</span><span class="cx">                                 A72D5D7F1236CBA800A88B15 /* APISerializedScriptValue.h */,
</span><span class="cx">                                 BCF04C8E11FF9F6E00F86A58 /* APIString.h */,
</span><span class="lines">@@ -7177,6 +7183,7 @@
</span><span class="cx">                                 1A7284471959ED100007BCE5 /* SessionStateConversion.h in Headers */,
</span><span class="cx">                                 CDE6E2D319F731C400BA9688 /* WebOriginDataManagerSupplement.h in Headers */,
</span><span class="cx">                                 1AF459321946559500F9D4A2 /* WKError.h in Headers */,
</span><ins>+                                1A3A73CE1A48C6D4007231B3 /* APIPageGroupHandle.h in Headers */,
</ins><span class="cx">                                 1ADAE12E1919A5B400F48E21 /* WKPreferences.h in Headers */,
</span><span class="cx">                         );
</span><span class="cx">                         runOnlyForDeploymentPostprocessing = 0;
</span><span class="lines">@@ -9539,6 +9546,7 @@
</span><span class="cx">                                 C54256B918BEC18C00DE4179 /* WKFormPopover.mm in Sources */,
</span><span class="cx">                                 C57193BE18C14A44002D0F12 /* WKFormSelectControl.mm in Sources */,
</span><span class="cx">                                 C55CB5B818C2A5D600CA81E1 /* WKFormSelectPicker.mm in Sources */,
</span><ins>+                                1A3A73CF1A48C7F1007231B3 /* APIPageGroupHandle.cpp in Sources */,
</ins><span class="cx">                                 C55CB5B718C269CF00CA81E1 /* WKFormSelectPopover.mm in Sources */,
</span><span class="cx">                                 BCE469591214EDF4000B98EB /* WKFormSubmissionListener.cpp in Sources */,
</span><span class="cx">                                 BCD0139C110FA420003B8A67 /* WKFrame.cpp in Sources */,
</span></span></pre>
</div>
</div>

</body>
</html>