Title: [206937] trunk/Source/WebKit2
Revision
206937
Author
[email protected]
Date
2016-10-07 14:20:52 -0700 (Fri, 07 Oct 2016)

Log Message

Get rid of API::Session and WKSessionRef
https://bugs.webkit.org/show_bug.cgi?id=163140

Reviewed by Tim Horton.

This API is no longer used.

* CMakeLists.txt:
* Shared/API/APIObject.h:
* Shared/API/c/WKSharedAPICast.h:
* UIProcess/API/APISession.cpp: Removed.
(API::generateID): Deleted.
(API::Session::defaultSession): Deleted.
(API::Session::Session): Deleted.
(API::Session::createEphemeral): Deleted.
(API::Session::isEphemeral): Deleted.
(API::Session::getID): Deleted.
(API::Session::~Session): Deleted.
* UIProcess/API/APISession.h: Removed.
* UIProcess/API/C/WKPage.h:
* UIProcess/API/C/WKSessionRef.cpp: Removed.
(WKSessionCreate): Deleted.
(WKSessionGetTypeID): Deleted.
(WKSessionIsEphemeral): Deleted.
* UIProcess/API/C/WKSessionRef.h: Removed.
* UIProcess/WebPageProxy.h:
* UIProcess/WebProcessProxy.h:
* WebKit2.xcodeproj/project.pbxproj:

Modified Paths

Removed Paths

Diff

Modified: trunk/Source/WebKit2/CMakeLists.txt (206936 => 206937)


--- trunk/Source/WebKit2/CMakeLists.txt	2016-10-07 21:11:59 UTC (rev 206936)
+++ trunk/Source/WebKit2/CMakeLists.txt	2016-10-07 21:20:52 UTC (rev 206937)
@@ -414,7 +414,6 @@
     UIProcess/API/APIPageConfiguration.cpp
     UIProcess/API/APIProcessPoolConfiguration.cpp
     UIProcess/API/APIOpenPanelParameters.cpp
-    UIProcess/API/APISession.cpp
     UIProcess/API/APISessionState.cpp
     UIProcess/API/APIUserContentExtension.cpp
     UIProcess/API/APIUserContentExtensionStore.cpp

Modified: trunk/Source/WebKit2/ChangeLog (206936 => 206937)


--- trunk/Source/WebKit2/ChangeLog	2016-10-07 21:11:59 UTC (rev 206936)
+++ trunk/Source/WebKit2/ChangeLog	2016-10-07 21:20:52 UTC (rev 206937)
@@ -1,3 +1,34 @@
+2016-10-07  Anders Carlsson  <[email protected]>
+
+        Get rid of API::Session and WKSessionRef
+        https://bugs.webkit.org/show_bug.cgi?id=163140
+
+        Reviewed by Tim Horton.
+
+        This API is no longer used.
+
+        * CMakeLists.txt:
+        * Shared/API/APIObject.h:
+        * Shared/API/c/WKSharedAPICast.h:
+        * UIProcess/API/APISession.cpp: Removed.
+        (API::generateID): Deleted.
+        (API::Session::defaultSession): Deleted.
+        (API::Session::Session): Deleted.
+        (API::Session::createEphemeral): Deleted.
+        (API::Session::isEphemeral): Deleted.
+        (API::Session::getID): Deleted.
+        (API::Session::~Session): Deleted.
+        * UIProcess/API/APISession.h: Removed.
+        * UIProcess/API/C/WKPage.h:
+        * UIProcess/API/C/WKSessionRef.cpp: Removed.
+        (WKSessionCreate): Deleted.
+        (WKSessionGetTypeID): Deleted.
+        (WKSessionIsEphemeral): Deleted.
+        * UIProcess/API/C/WKSessionRef.h: Removed.
+        * UIProcess/WebPageProxy.h:
+        * UIProcess/WebProcessProxy.h:
+        * WebKit2.xcodeproj/project.pbxproj:
+
 2016-10-07  Tim Horton  <[email protected]>
 
         Move ViewGestureController files to more accurate locations

Modified: trunk/Source/WebKit2/Shared/API/APIObject.h (206936 => 206937)


--- trunk/Source/WebKit2/Shared/API/APIObject.h	2016-10-07 21:11:59 UTC (rev 206936)
+++ trunk/Source/WebKit2/Shared/API/APIObject.h	2016-10-07 21:20:52 UTC (rev 206937)
@@ -144,7 +144,6 @@
         RunJavaScriptAlertResultListener,
         RunJavaScriptConfirmResultListener,
         RunJavaScriptPromptResultListener,
-        Session,
         TextChecker,
         UserContentController,
         UserContentExtension,

Modified: trunk/Source/WebKit2/Shared/API/c/WKSharedAPICast.h (206936 => 206937)


--- trunk/Source/WebKit2/Shared/API/c/WKSharedAPICast.h	2016-10-07 21:11:59 UTC (rev 206936)
+++ trunk/Source/WebKit2/Shared/API/c/WKSharedAPICast.h	2016-10-07 21:20:52 UTC (rev 206937)
@@ -29,7 +29,6 @@
 #include "APIError.h"
 #include "APINumber.h"
 #include "APISecurityOrigin.h"
-#include "APISession.h"
 #include "APIString.h"
 #include "APIURL.h"
 #include "APIURLRequest.h"
@@ -112,7 +111,6 @@
 WK_ADD_API_MAPPING(WKURLRequestRef, API::URLRequest)
 WK_ADD_API_MAPPING(WKURLResponseRef, API::URLResponse)
 WK_ADD_API_MAPPING(WKUserContentURLPatternRef, API::UserContentURLPattern)
-WK_ADD_API_MAPPING(WKSessionRef, API::Session)
 
 template<> struct APITypeInfo<WKMutableArrayRef> { typedef API::Array ImplType; };
 template<> struct APITypeInfo<WKMutableDictionaryRef> { typedef API::Dictionary ImplType; };

Deleted: trunk/Source/WebKit2/UIProcess/API/APISession.cpp (206936 => 206937)


--- trunk/Source/WebKit2/UIProcess/API/APISession.cpp	2016-10-07 21:11:59 UTC (rev 206936)
+++ trunk/Source/WebKit2/UIProcess/API/APISession.cpp	2016-10-07 21:20:52 UTC (rev 206937)
@@ -1,86 +0,0 @@
-/*
- * 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 "config.h"
-#include "APISession.h"
-
-#include "NetworkProcessMessages.h"
-#include "WebProcessPool.h"
-#include <wtf/RunLoop.h>
-
-namespace API {
-
-static uint64_t generateID()
-{
-    ASSERT(RunLoop::isMain());
-
-    static uint64_t uniqueSessionID = WebCore::SessionID::legacyPrivateSessionID().sessionID();
-
-    return ++uniqueSessionID;
-}
-
-Session& Session::defaultSession()
-{
-    ASSERT(RunLoop::isMain());
-
-    static Session* defaultSession = new Session(WebCore::SessionID::defaultSessionID());
-    return *defaultSession;
-}
-
-Session::Session()
-    : m_sessionID(generateID())
-{
-}
-
-Session::Session(WebCore::SessionID sessionID)
-    : m_sessionID(sessionID)
-{
-}
-
-Ref<Session> Session::createEphemeral()
-{
-    // FIXME: support creation of non-default, non-ephemeral sessions
-    return adoptRef(*new Session());
-}
-
-bool Session::isEphemeral() const
-{
-    return m_sessionID.isEphemeral();
-}
-
-WebCore::SessionID Session::getID() const
-{
-    return m_sessionID;
-}
-
-Session::~Session()
-{
-    if (m_sessionID.isEphemeral()) {
-        for (auto& processPool : WebKit::WebProcessPool::allProcessPools())
-            processPool->sendToNetworkingProcess(Messages::NetworkProcess::DestroyPrivateBrowsingSession(m_sessionID));
-    }
-}
-
-} // namespace API

Deleted: trunk/Source/WebKit2/UIProcess/API/APISession.h (206936 => 206937)


--- trunk/Source/WebKit2/UIProcess/API/APISession.h	2016-10-07 21:11:59 UTC (rev 206936)
+++ trunk/Source/WebKit2/UIProcess/API/APISession.h	2016-10-07 21:20:52 UTC (rev 206937)
@@ -1,52 +0,0 @@
-/*
- * 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 APISession_h
-#define APISession_h
-
-#include "APIObject.h"
-#include <WebCore/SessionID.h>
-
-namespace API {
-
-class Session : public API::ObjectImpl<API::Object::Type::Session> {
-public:
-    static Ref<Session> createEphemeral();
-    virtual ~Session();
-
-    static Session& defaultSession();
-    bool isEphemeral() const;
-    WebCore::SessionID getID() const;
-
-private:
-    Session();
-    explicit Session(WebCore::SessionID);
-
-    WebCore::SessionID m_sessionID;
-};
-
-} // namespace API
-
-#endif // APISession_h

Modified: trunk/Source/WebKit2/UIProcess/API/C/WKPage.h (206936 => 206937)


--- trunk/Source/WebKit2/UIProcess/API/C/WKPage.h	2016-10-07 21:11:59 UTC (rev 206936)
+++ trunk/Source/WebKit2/UIProcess/API/C/WKPage.h	2016-10-07 21:20:52 UTC (rev 206937)
@@ -44,7 +44,6 @@
 #include <WebKit/WKPagePolicyClient.h>
 #include <WebKit/WKPageUIClient.h>
 #include <WebKit/WKPageVisibilityTypes.h>
-#include <WebKit/WKSessionRef.h>
 
 #ifndef __cplusplus
 #include <stdbool.h>

Deleted: trunk/Source/WebKit2/UIProcess/API/C/WKSessionRef.cpp (206936 => 206937)


--- trunk/Source/WebKit2/UIProcess/API/C/WKSessionRef.cpp	2016-10-07 21:11:59 UTC (rev 206936)
+++ trunk/Source/WebKit2/UIProcess/API/C/WKSessionRef.cpp	2016-10-07 21:20:52 UTC (rev 206937)
@@ -1,52 +0,0 @@
-/*
- * 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 "config.h"
-#include "WKSessionRef.h"
-
-#include "APISession.h"
-#include "WKAPICast.h"
-
-using namespace WebKit;
-
-WKSessionRef WKSessionCreate(bool isEphemeral)
-{
-    // The implementation doesn't support non-ephemeral
-    if (!isEphemeral)
-        return nullptr;
-
-    auto session = API::Session::createEphemeral();
-    return toAPI(&session.leakRef());
-}
-
-WKTypeID WKSessionGetTypeID()
-{
-    return toAPI(API::Session::APIType);
-}
-
-bool WKSessionIsEphemeral(WKSessionRef sessionRef)
-{
-    return toAPI(toImpl(sessionRef)->isEphemeral());
-}

Deleted: trunk/Source/WebKit2/UIProcess/API/C/WKSessionRef.h (206936 => 206937)


--- trunk/Source/WebKit2/UIProcess/API/C/WKSessionRef.h	2016-10-07 21:11:59 UTC (rev 206936)
+++ trunk/Source/WebKit2/UIProcess/API/C/WKSessionRef.h	2016-10-07 21:20:52 UTC (rev 206937)
@@ -1,46 +0,0 @@
-/*
- * 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 WKSessionRef_h
-#define WKSessionRef_h
-
-#include <WebKit/WKBase.h>
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-/* FIXME: We can create sessions on demand, because we hardcode the fact that all sessions but the default one are ephemeral. We'll need to create them explicitly once sessions have more configuration options. */
-WK_EXPORT WKSessionRef WKSessionCreate(bool isEphemeral);
-
-WK_EXPORT WKTypeID WKSessionGetTypeID();
-
-WK_EXPORT bool WKSessionIsEphemeral(WKSessionRef session);
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif /* WKSessionRef_h */

Modified: trunk/Source/WebKit2/UIProcess/WebPageProxy.h (206936 => 206937)


--- trunk/Source/WebKit2/UIProcess/WebPageProxy.h	2016-10-07 21:11:59 UTC (rev 206936)
+++ trunk/Source/WebKit2/UIProcess/WebPageProxy.h	2016-10-07 21:20:52 UTC (rev 206937)
@@ -26,7 +26,6 @@
 #pragma once
 
 #include "APIObject.h"
-#include "APISession.h"
 #include "AssistedNodeInformation.h"
 #include "AutoCorrectionCallback.h"
 #include "Connection.h"

Modified: trunk/Source/WebKit2/UIProcess/WebProcessProxy.h (206936 => 206937)


--- trunk/Source/WebKit2/UIProcess/WebProcessProxy.h	2016-10-07 21:11:59 UTC (rev 206936)
+++ trunk/Source/WebKit2/UIProcess/WebProcessProxy.h	2016-10-07 21:20:52 UTC (rev 206937)
@@ -25,7 +25,6 @@
 
 #pragma once
 
-#include "APISession.h"
 #include "APIUserInitiatedAction.h"
 #include "ChildProcessProxy.h"
 #include "CustomProtocolManagerProxy.h"

Modified: trunk/Source/WebKit2/WebKit2.xcodeproj/project.pbxproj (206936 => 206937)


--- trunk/Source/WebKit2/WebKit2.xcodeproj/project.pbxproj	2016-10-07 21:11:59 UTC (rev 206936)
+++ trunk/Source/WebKit2/WebKit2.xcodeproj/project.pbxproj	2016-10-07 21:20:52 UTC (rev 206937)
@@ -1076,10 +1076,6 @@
 		75A8D2C8187CCFAB00C39C9E /* WKWebsiteDataStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 75A8D2C4187CCF9F00C39C9E /* WKWebsiteDataStore.h */; settings = {ATTRIBUTES = (Public, ); }; };
 		75A8D2C9187CCFAF00C39C9E /* WKWebsiteDataStore.mm in Sources */ = {isa = PBXBuildFile; fileRef = 75A8D2C5187CCF9F00C39C9E /* WKWebsiteDataStore.mm */; };
 		75A8D2D6187D1C0E00C39C9E /* WKWebsiteDataStoreInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 75A8D2D4187D1C0100C39C9E /* WKWebsiteDataStoreInternal.h */; };
-		75A8D2D7187D303A00C39C9E /* WKSessionRef.h in Headers */ = {isa = PBXBuildFile; fileRef = 75A8D2D1187D17BF00C39C9E /* WKSessionRef.h */; settings = {ATTRIBUTES = (Private, ); }; };
-		75A8D2D8187D304000C39C9E /* WKSessionRef.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 75A8D2D0187D17BF00C39C9E /* WKSessionRef.cpp */; };
-		75A8D2E1187DEC1A00C39C9E /* APISession.h in Headers */ = {isa = PBXBuildFile; fileRef = 75A8D2DE187DE87400C39C9E /* APISession.h */; };
-		75A8D2E2187DEC1E00C39C9E /* APISession.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 75A8D2DD187DE87400C39C9E /* APISession.cpp */; };
 		762B748D120BC75C00819339 /* WKPreferencesRefPrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 762B7484120BBA2D00819339 /* WKPreferencesRefPrivate.h */; settings = {ATTRIBUTES = (Private, ); }; };
 		7A5E394A1D5BD8BE00B4B7CE /* com.macromedia.Flash Player ESR.plugin.sb in Resources */ = {isa = PBXBuildFile; fileRef = 7A5E39491D5BD8A700B4B7CE /* com.macromedia.Flash Player ESR.plugin.sb */; };
 		7A791EFA1C7CFCF100C4C52B /* WebResourceLoadStatisticsStoreMessageReceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7A791EF91C7CFB3700C4C52B /* WebResourceLoadStatisticsStoreMessageReceiver.cpp */; };
@@ -3163,11 +3159,7 @@
 		753E3E0B1887397300188496 /* SessionTracker.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = SessionTracker.cpp; sourceTree = "<group>"; };
 		75A8D2C4187CCF9F00C39C9E /* WKWebsiteDataStore.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WKWebsiteDataStore.h; sourceTree = "<group>"; };
 		75A8D2C5187CCF9F00C39C9E /* WKWebsiteDataStore.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = WKWebsiteDataStore.mm; sourceTree = "<group>"; };
-		75A8D2D0187D17BF00C39C9E /* WKSessionRef.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = WKSessionRef.cpp; sourceTree = "<group>"; };
-		75A8D2D1187D17BF00C39C9E /* WKSessionRef.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WKSessionRef.h; sourceTree = "<group>"; };
 		75A8D2D4187D1C0100C39C9E /* WKWebsiteDataStoreInternal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WKWebsiteDataStoreInternal.h; sourceTree = "<group>"; };
-		75A8D2DD187DE87400C39C9E /* APISession.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = APISession.cpp; path = UIProcess/API/APISession.cpp; sourceTree = SOURCE_ROOT; };
-		75A8D2DE187DE87400C39C9E /* APISession.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = APISession.h; path = UIProcess/API/APISession.h; sourceTree = SOURCE_ROOT; };
 		762B7481120BBA0100819339 /* FontSmoothingLevel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FontSmoothingLevel.h; sourceTree = "<group>"; };
 		762B7484120BBA2D00819339 /* WKPreferencesRefPrivate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WKPreferencesRefPrivate.h; sourceTree = "<group>"; };
 		7A5E39491D5BD8A700B4B7CE /* com.macromedia.Flash Player ESR.plugin.sb */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "com.macromedia.Flash Player ESR.plugin.sb"; sourceTree = "<group>"; };
@@ -6262,8 +6254,6 @@
 				1AFDD3141891B54000153970 /* APIPolicyClient.h */,
 				7CE4D21D1A4914CA00C7F152 /* APIProcessPoolConfiguration.cpp */,
 				7CE4D21E1A4914CA00C7F152 /* APIProcessPoolConfiguration.h */,
-				75A8D2DD187DE87400C39C9E /* APISession.cpp */,
-				75A8D2DE187DE87400C39C9E /* APISession.h */,
 				1AFDE65F1954E9B100C48FFA /* APISessionState.cpp */,
 				1AFDE6601954E9B100C48FFA /* APISessionState.h */,
 				1A4D664718A2D91A00D82E21 /* APIUIClient.h */,
@@ -6401,8 +6391,6 @@
 				518ACAE912AEE6BB00B04B83 /* WKProtectionSpaceTypes.h */,
 				33367638130C99DC006C9DE2 /* WKResourceCacheManager.cpp */,
 				33367639130C99DC006C9DE2 /* WKResourceCacheManager.h */,
-				75A8D2D0187D17BF00C39C9E /* WKSessionRef.cpp */,
-				75A8D2D1187D17BF00C39C9E /* WKSessionRef.h */,
 				1ADE46B01954EC61000F7985 /* WKSessionStateRef.cpp */,
 				1ADE46B11954EC61000F7985 /* WKSessionStateRef.h */,
 				7C89D29D1A678554003A5FDE /* WKUserContentControllerRef.cpp */,
@@ -7557,7 +7545,6 @@
 				1AFDD3151891B54000153970 /* APIPolicyClient.h in Headers */,
 				7CE4D2201A4914CA00C7F152 /* APIProcessPoolConfiguration.h in Headers */,
 				F634445612A885C8000612D8 /* APISecurityOrigin.h in Headers */,
-				75A8D2E1187DEC1A00C39C9E /* APISession.h in Headers */,
 				1AFDE6621954E9B100C48FFA /* APISessionState.h in Headers */,
 				1A4D664818A2D91A00D82E21 /* APIUIClient.h in Headers */,
 				BCDB86C11200FB97007254BE /* APIURL.h in Headers */,
@@ -8317,7 +8304,6 @@
 				51CD1C5E1B3493B400142CA5 /* WKSecurityOriginRef.h in Headers */,
 				BC407604124FF0270068F20A /* WKSerializedScriptValue.h in Headers */,
 				F67DD7BA125E40D9007BDCB8 /* WKSerializedScriptValuePrivate.h in Headers */,
-				75A8D2D7187D303A00C39C9E /* WKSessionRef.h in Headers */,
 				1ADE46B31954EC61000F7985 /* WKSessionStateRef.h in Headers */,
 				BCDDB32B124EC2AB0048D13C /* WKSharedAPICast.h in Headers */,
 				513E462D1AD837560016234A /* WKSharingServicePickerDelegate.h in Headers */,
@@ -9030,7 +9016,6 @@
 				1AC1336E18565D2B00F3EC05 /* APIPageHandle.cpp in Sources */,
 				7CE4D21F1A4914CA00C7F152 /* APIProcessPoolConfiguration.cpp in Sources */,
 				FED3C1DC1B447EAC00E0EB7F /* APISerializedScriptValueCocoa.mm in Sources */,
-				75A8D2E2187DEC1E00C39C9E /* APISession.cpp in Sources */,
 				1AFDE6611954E9B100C48FFA /* APISessionState.cpp in Sources */,
 				BCE2315E122C30CA00D5C35A /* APIURLRequest.cpp in Sources */,
 				BC90A1D3122DD55E00CC8C50 /* APIURLResponse.cpp in Sources */,
@@ -9763,7 +9748,6 @@
 				51CD1C661B34B9DC00142CA5 /* WKSecurityOrigin.mm in Sources */,
 				51CD1C5D1B3493AF00142CA5 /* WKSecurityOriginRef.cpp in Sources */,
 				BC407603124FF0270068F20A /* WKSerializedScriptValue.cpp in Sources */,
-				75A8D2D8187D304000C39C9E /* WKSessionRef.cpp in Sources */,
 				1ADE46B21954EC61000F7985 /* WKSessionStateRef.cpp in Sources */,
 				513E462E1AD837560016234A /* WKSharingServicePickerDelegate.mm in Sources */,
 				BC407605124FF0270068F20A /* WKString.cpp in Sources */,
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to