Diff
Modified: trunk/Source/WebKit/mac/ChangeLog (151689 => 151690)
--- trunk/Source/WebKit/mac/ChangeLog 2013-06-18 19:58:32 UTC (rev 151689)
+++ trunk/Source/WebKit/mac/ChangeLog 2013-06-18 20:05:08 UTC (rev 151690)
@@ -1,3 +1,14 @@
+2013-06-18 Alexey Proskuryakov <[email protected]>
+
+ <rdar://problem/13174821> Remove files with an incorrect license.
+
+ Rubber-stamped by Maciej Stachowiak.
+
+ This will break the build, stay tuned for a fix coming soon.
+
+ * WebCoreSupport/WebFrameNetworkingContext.h: Removed.
+ * WebCoreSupport/WebFrameNetworkingContext.mm: Removed.
+
2013-06-17 Michael BrĂ¼ning <[email protected]>
[Qt] Remove Qt specific QTKIT flagged code.
Deleted: trunk/Source/WebKit/mac/WebCoreSupport/WebFrameNetworkingContext.h (151689 => 151690)
--- trunk/Source/WebKit/mac/WebCoreSupport/WebFrameNetworkingContext.h 2013-06-18 19:58:32 UTC (rev 151689)
+++ trunk/Source/WebKit/mac/WebCoreSupport/WebFrameNetworkingContext.h 2013-06-18 20:05:08 UTC (rev 151690)
@@ -1,46 +0,0 @@
-/*
- Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
- Copyright (C) 2012 Apple Inc. All rights reserved.
-
- This library is free software; you can redistribute it and/or
- modify it under the terms of the GNU Library General Public
- License as published by the Free Software Foundation; either
- version 2 of the License, or (at your option) any later version.
-
- This library is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- Library General Public License for more details.
-
- You should have received a copy of the GNU Library General Public License
- along with this library; see the file COPYING.LIB. If not, write to
- the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- Boston, MA 02110-1301, USA.
-*/
-
-#import <WebCore/FrameNetworkingContext.h>
-#import <wtf/SchedulePair.h>
-
-class WebFrameNetworkingContext : public WebCore::FrameNetworkingContext {
-public:
- static PassRefPtr<WebFrameNetworkingContext> create(WebCore::Frame* frame)
- {
- return adoptRef(new WebFrameNetworkingContext(frame));
- }
-
- static void ensurePrivateBrowsingSession();
- static void destroyPrivateBrowsingSession();
-
-private:
- WebFrameNetworkingContext(WebCore::Frame* frame)
- : WebCore::FrameNetworkingContext(frame)
- {
- }
-
- virtual bool needsSiteSpecificQuirks() const OVERRIDE;
- virtual bool localFileContentSniffingEnabled() const OVERRIDE;
- virtual WebCore::NetworkStorageSession& storageSession() const OVERRIDE;
- virtual WTF::SchedulePairHashSet* scheduledRunLoopPairs() const OVERRIDE;
- virtual RetainPtr<CFDataRef> sourceApplicationAuditData() const OVERRIDE;
- virtual WebCore::ResourceError blockedError(const WebCore::ResourceRequest&) const OVERRIDE;
-};
Deleted: trunk/Source/WebKit/mac/WebCoreSupport/WebFrameNetworkingContext.mm (151689 => 151690)
--- trunk/Source/WebKit/mac/WebCoreSupport/WebFrameNetworkingContext.mm 2013-06-18 19:58:32 UTC (rev 151689)
+++ trunk/Source/WebKit/mac/WebCoreSupport/WebFrameNetworkingContext.mm 2013-06-18 20:05:08 UTC (rev 151690)
@@ -1,99 +0,0 @@
-/*
- Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
- Copyright (C) 2012 Apple Inc. All rights reserved.
-
- This library is free software; you can redistribute it and/or
- modify it under the terms of the GNU Library General Public
- License as published by the Free Software Foundation; either
- version 2 of the License, or (at your option) any later version.
-
- This library is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- Library General Public License for more details.
-
- You should have received a copy of the GNU Library General Public License
- along with this library; see the file COPYING.LIB. If not, write to
- the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- Boston, MA 02110-1301, USA.
-*/
-
-#import "WebFrameNetworkingContext.h"
-
-#import "WebFrameInternal.h"
-#import "WebViewPrivate.h"
-#import <WebCore/FrameLoader.h>
-#import <WebCore/FrameLoaderClient.h>
-#import <WebCore/NetworkStorageSession.h>
-#import <WebCore/Page.h>
-#import <WebCore/ResourceError.h>
-#import <WebCore/Settings.h>
-#import <WebKitSystemInterface.h>
-
-using namespace WebCore;
-
-static OwnPtr<NetworkStorageSession>& privateBrowsingStorageSession()
-{
- DEFINE_STATIC_LOCAL(OwnPtr<NetworkStorageSession>, session, ());
- return session;
-}
-
-bool WebFrameNetworkingContext::needsSiteSpecificQuirks() const
-{
- return frame() && frame()->settings() && frame()->settings()->needsSiteSpecificQuirks();
-}
-
-bool WebFrameNetworkingContext::localFileContentSniffingEnabled() const
-{
- return frame() && frame()->settings() && frame()->settings()->localFileContentSniffingEnabled();
-}
-
-SchedulePairHashSet* WebFrameNetworkingContext::scheduledRunLoopPairs() const
-{
- return frame() && frame()->page() ? frame()->page()->scheduledRunLoopPairs() : 0;
-}
-
-RetainPtr<CFDataRef> WebFrameNetworkingContext::sourceApplicationAuditData() const
-{
- if (!frame())
- return nil;
-
- if (!frame()->page())
- return nil;
-
- WebView *webView = kit(frame()->page());
- if (!webView)
- return nil;
-
- return (CFDataRef)webView._sourceApplicationAuditData;
-}
-
-ResourceError WebFrameNetworkingContext::blockedError(const ResourceRequest& request) const
-{
- return frame()->loader()->client()->blockedError(request);
-}
-
-void WebFrameNetworkingContext::ensurePrivateBrowsingSession()
-{
- ASSERT(isMainThread());
- if (privateBrowsingStorageSession())
- return;
-
- privateBrowsingStorageSession() = NetworkStorageSession::createPrivateBrowsingSession([[NSBundle mainBundle] bundleIdentifier]);
-}
-
-void WebFrameNetworkingContext::destroyPrivateBrowsingSession()
-{
- privateBrowsingStorageSession() = nullptr;
-}
-
-NetworkStorageSession& WebFrameNetworkingContext::storageSession() const
-{
- bool inPrivateBrowsingMode = frame() && frame()->settings() && frame()->settings()->privateBrowsingEnabled();
- if (inPrivateBrowsingMode) {
- ASSERT(privateBrowsingStorageSession());
- return *privateBrowsingStorageSession();
- }
- return NetworkStorageSession::defaultStorageSession();
-}
-
Modified: trunk/Source/WebKit/win/ChangeLog (151689 => 151690)
--- trunk/Source/WebKit/win/ChangeLog 2013-06-18 19:58:32 UTC (rev 151689)
+++ trunk/Source/WebKit/win/ChangeLog 2013-06-18 20:05:08 UTC (rev 151690)
@@ -1,3 +1,14 @@
+2013-06-18 Alexey Proskuryakov <[email protected]>
+
+ <rdar://problem/13174821> Remove files with an incorrect license.
+
+ Rubber-stamped by Maciej Stachowiak.
+
+ This will break the build, stay tuned for a fix coming soon.
+
+ * WebCoreSupport/WebFrameNetworkingContext.cpp: Removed.
+ * WebCoreSupport/WebFrameNetworkingContext.h: Removed.
+
2013-06-12 Brent Fulgham <[email protected]>
[Windows] Implement Accessibility2 APIs in Windows.
Deleted: trunk/Source/WebKit/win/WebCoreSupport/WebFrameNetworkingContext.cpp (151689 => 151690)
--- trunk/Source/WebKit/win/WebCoreSupport/WebFrameNetworkingContext.cpp 2013-06-18 19:58:32 UTC (rev 151689)
+++ trunk/Source/WebKit/win/WebCoreSupport/WebFrameNetworkingContext.cpp 2013-06-18 20:05:08 UTC (rev 151690)
@@ -1,114 +0,0 @@
-/*
- Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
-
- This library is free software; you can redistribute it and/or
- modify it under the terms of the GNU Library General Public
- License as published by the Free Software Foundation; either
- version 2 of the License, or (at your option) any later version.
-
- This library is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- Library General Public License for more details.
-
- You should have received a copy of the GNU Library General Public License
- along with this library; see the file COPYING.LIB. If not, write to
- the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- Boston, MA 02110-1301, USA.
-*/
-
-#include "config.h"
-#include "WebFrameNetworkingContext.h"
-
-#include "FrameLoader.h"
-#include "FrameLoaderClient.h"
-#if USE(CFNETWORK)
-#include <CFNetwork/CFHTTPCookiesPriv.h>
-#endif
-#include <WebCore/Settings.h>
-#if USE(CFNETWORK)
-#include <WebKitSystemInterface/WebKitSystemInterface.h>
-#endif
-
-using namespace WebCore;
-
-#if USE(CFNETWORK)
-static OwnPtr<NetworkStorageSession>& privateBrowsingStorageSession()
-{
- DEFINE_STATIC_LOCAL(OwnPtr<NetworkStorageSession>, session, ());
- return session;
-}
-#endif
-
-PassRefPtr<WebFrameNetworkingContext> WebFrameNetworkingContext::create(Frame* frame, const String& userAgent)
-{
- return adoptRef(new WebFrameNetworkingContext(frame, userAgent));
-}
-
-String WebFrameNetworkingContext::userAgent() const
-{
- return m_userAgent;
-}
-
-String WebFrameNetworkingContext::referrer() const
-{
- return frame()->loader()->referrer();
-}
-
-WebCore::ResourceError WebFrameNetworkingContext::blockedError(const WebCore::ResourceRequest& request) const
-{
- return frame()->loader()->client()->blockedError(request);
-}
-
-static String& privateBrowsingStorageSessionIdentifierBase()
-{
- ASSERT(isMainThread());
- DEFINE_STATIC_LOCAL(String, base, ());
- return base;
-}
-
-void WebFrameNetworkingContext::setPrivateBrowsingStorageSessionIdentifierBase(const String& identifier)
-{
- privateBrowsingStorageSessionIdentifierBase() = identifier;
-}
-
-void WebFrameNetworkingContext::ensurePrivateBrowsingSession()
-{
- ASSERT(isMainThread());
-#if USE(CFNETWORK)
- if (privateBrowsingStorageSession())
- return;
-
- String identifierBase = privateBrowsingStorageSessionIdentifierBase().isNull() ? String(reinterpret_cast<CFStringRef>(CFBundleGetValueForInfoDictionaryKey(CFBundleGetMainBundle(), kCFBundleIdentifierKey))) : privateBrowsingStorageSessionIdentifierBase();
-
- privateBrowsingStorageSession() = NetworkStorageSession::createPrivateBrowsingSession(identifierBase);
-#endif
-}
-
-void WebFrameNetworkingContext::destroyPrivateBrowsingSession()
-{
-#if USE(CFNETWORK)
- privateBrowsingStorageSession() = nullptr;
-#endif
-}
-
-#if USE(CFNETWORK)
-NetworkStorageSession& WebFrameNetworkingContext::storageSession() const
-{
- bool inPrivateBrowsingMode = frame() && frame()->settings() && frame()->settings()->privateBrowsingEnabled();
- if (inPrivateBrowsingMode) {
- ASSERT(privateBrowsingStorageSession());
- return *privateBrowsingStorageSession();
- }
- return NetworkStorageSession::defaultStorageSession();
-}
-
-void WebFrameNetworkingContext::setCookieAcceptPolicyForAllContexts(CFHTTPCookieStorageAcceptPolicy policy)
-{
- if (RetainPtr<CFHTTPCookieStorageRef> cookieStorage = NetworkStorageSession::defaultStorageSession().cookieStorage())
- CFHTTPCookieStorageSetCookieAcceptPolicy(cookieStorage.get(), policy);
-
- if (privateBrowsingStorageSession())
- CFHTTPCookieStorageSetCookieAcceptPolicy(privateBrowsingStorageSession()->cookieStorage().get(), policy);
-}
-#endif
Deleted: trunk/Source/WebKit/win/WebCoreSupport/WebFrameNetworkingContext.h (151689 => 151690)
--- trunk/Source/WebKit/win/WebCoreSupport/WebFrameNetworkingContext.h 2013-06-18 19:58:32 UTC (rev 151689)
+++ trunk/Source/WebKit/win/WebCoreSupport/WebFrameNetworkingContext.h 2013-06-18 20:05:08 UTC (rev 151690)
@@ -1,60 +0,0 @@
-/*
- Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
- Copyright (C) 2012 Apple Inc. All rights reserved.
-
- This library is free software; you can redistribute it and/or
- modify it under the terms of the GNU Library General Public
- License as published by the Free Software Foundation; either
- version 2 of the License, or (at your option) any later version.
-
- This library is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- Library General Public License for more details.
-
- You should have received a copy of the GNU Library General Public License
- along with this library; see the file COPYING.LIB. If not, write to
- the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- Boston, MA 02110-1301, USA.
-*/
-
-#ifndef WebFrameNetworkingContext_h
-#define WebFrameNetworkingContext_h
-
-#include <WebCore/FrameNetworkingContext.h>
-#include <WebCore/ResourceError.h>
-
-#if USE(CFNETWORK)
-#include <WebCore/ResourceHandle.h>
-#endif
-
-class WebFrameNetworkingContext : public WebCore::FrameNetworkingContext {
-public:
- static PassRefPtr<WebFrameNetworkingContext> create(WebCore::Frame*, const WTF::String& userAgent);
-
- static void setPrivateBrowsingStorageSessionIdentifierBase(const String&);
- static void ensurePrivateBrowsingSession();
- static void destroyPrivateBrowsingSession();
-
-#if USE(CFNETWORK)
- static void setCookieAcceptPolicyForAllContexts(CFHTTPCookieStorageAcceptPolicy);
-#endif
-
-private:
- WebFrameNetworkingContext(WebCore::Frame* frame, const WTF::String& userAgent)
- : WebCore::FrameNetworkingContext(frame)
- , m_userAgent(userAgent)
- {
- }
-
- virtual WTF::String userAgent() const;
- virtual WTF::String referrer() const;
-#if USE(CFNETWORK)
- virtual WebCore::NetworkStorageSession& storageSession() const;
-#endif
- virtual WebCore::ResourceError blockedError(const WebCore::ResourceRequest&) const;
-
- WTF::String m_userAgent;
-};
-
-#endif // WebFrameNetworkingContext_h
Modified: trunk/Source/WebKit2/ChangeLog (151689 => 151690)
--- trunk/Source/WebKit2/ChangeLog 2013-06-18 19:58:32 UTC (rev 151689)
+++ trunk/Source/WebKit2/ChangeLog 2013-06-18 20:05:08 UTC (rev 151690)
@@ -1,3 +1,14 @@
+2013-06-18 Alexey Proskuryakov <[email protected]>
+
+ <rdar://problem/13174821> Remove files with an incorrect license.
+
+ Rubber-stamped by Maciej Stachowiak.
+
+ This will break the build, stay tuned for a fix coming soon.
+
+ * WebProcess/WebCoreSupport/mac/WebFrameNetworkingContext.h: Removed.
+ * WebProcess/WebCoreSupport/mac/WebFrameNetworkingContext.mm: Removed.
+
2013-06-17 Santosh Mahto <[email protected]>
Extra whitespace in blank line in PlatformPopupMenuData.cpp
Deleted: trunk/Source/WebKit2/WebProcess/WebCoreSupport/mac/WebFrameNetworkingContext.h (151689 => 151690)
--- trunk/Source/WebKit2/WebProcess/WebCoreSupport/mac/WebFrameNetworkingContext.h 2013-06-18 19:58:32 UTC (rev 151689)
+++ trunk/Source/WebKit2/WebProcess/WebCoreSupport/mac/WebFrameNetworkingContext.h 2013-06-18 20:05:08 UTC (rev 151690)
@@ -1,57 +0,0 @@
-/*
- Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
-
- This library is free software; you can redistribute it and/or
- modify it under the terms of the GNU Library General Public
- License as published by the Free Software Foundation; either
- version 2 of the License, or (at your option) any later version.
-
- This library is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- Library General Public License for more details.
-
- You should have received a copy of the GNU Library General Public License
- along with this library; see the file COPYING.LIB. If not, write to
- the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- Boston, MA 02110-1301, USA.
-*/
-
-#ifndef WebFrameNetworkingContext_h
-#define WebFrameNetworkingContext_h
-
-#include "HTTPCookieAcceptPolicy.h"
-#include "WebFrame.h"
-#include <WebCore/FrameNetworkingContext.h>
-
-namespace WebKit {
-
-class WebFrameNetworkingContext : public WebCore::FrameNetworkingContext {
-public:
- static PassRefPtr<WebFrameNetworkingContext> create(WebFrame* frame)
- {
- return adoptRef(new WebFrameNetworkingContext(frame));
- }
-
- static void setPrivateBrowsingStorageSessionIdentifierBase(const String&);
- static void ensurePrivateBrowsingSession();
- static void destroyPrivateBrowsingSession();
- static void setCookieAcceptPolicyForAllContexts(HTTPCookieAcceptPolicy);
-
-private:
- WebFrameNetworkingContext(WebFrame* frame)
- : WebCore::FrameNetworkingContext(frame->coreFrame())
- {
- }
-
- virtual bool needsSiteSpecificQuirks() const OVERRIDE;
- virtual bool localFileContentSniffingEnabled() const OVERRIDE;
- virtual WebCore::NetworkStorageSession& storageSession() const OVERRIDE;
- virtual SchedulePairHashSet* scheduledRunLoopPairs() const OVERRIDE;
- virtual RetainPtr<CFDataRef> sourceApplicationAuditData() const OVERRIDE;
- virtual WebCore::ResourceError blockedError(const WebCore::ResourceRequest&) const OVERRIDE;
-};
-
-}
-
-#endif
Deleted: trunk/Source/WebKit2/WebProcess/WebCoreSupport/mac/WebFrameNetworkingContext.mm (151689 => 151690)
--- trunk/Source/WebKit2/WebProcess/WebCoreSupport/mac/WebFrameNetworkingContext.mm 2013-06-18 19:58:32 UTC (rev 151689)
+++ trunk/Source/WebKit2/WebProcess/WebCoreSupport/mac/WebFrameNetworkingContext.mm 2013-06-18 20:05:08 UTC (rev 151690)
@@ -1,121 +0,0 @@
-/*
- Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
- Copyright (C) 2012 Apple Inc. All rights reserved.
-
- This library is free software; you can redistribute it and/or
- modify it under the terms of the GNU Library General Public
- License as published by the Free Software Foundation; either
- version 2 of the License, or (at your option) any later version.
-
- This library is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- Library General Public License for more details.
-
- You should have received a copy of the GNU Library General Public License
- along with this library; see the file COPYING.LIB. If not, write to
- the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- Boston, MA 02110-1301, USA.
-*/
-
-#import "config.h"
-#import "WebFrameNetworkingContext.h"
-
-#import <WebCore/FrameLoader.h>
-#import <WebCore/FrameLoaderClient.h>
-#import <WebCore/Page.h>
-#import <WebCore/ResourceError.h>
-#import <WebCore/Settings.h>
-#import <WebKitSystemInterface.h>
-
-using namespace WebCore;
-
-namespace WebKit {
-
-static OwnPtr<NetworkStorageSession>& privateBrowsingStorageSession()
-{
- DEFINE_STATIC_LOCAL(OwnPtr<NetworkStorageSession>, session, ());
- return session;
-}
-
-bool WebFrameNetworkingContext::needsSiteSpecificQuirks() const
-{
- return frame() && frame()->settings() && frame()->settings()->needsSiteSpecificQuirks();
-}
-
-bool WebFrameNetworkingContext::localFileContentSniffingEnabled() const
-{
- return frame() && frame()->settings() && frame()->settings()->localFileContentSniffingEnabled();
-}
-
-SchedulePairHashSet* WebFrameNetworkingContext::scheduledRunLoopPairs() const
-{
- return frame() && frame()->page() ? frame()->page()->scheduledRunLoopPairs() : 0;
-}
-
-RetainPtr<CFDataRef> WebFrameNetworkingContext::sourceApplicationAuditData() const
-{
- return nil;
-}
-
-ResourceError WebFrameNetworkingContext::blockedError(const ResourceRequest& request) const
-{
- return frame()->loader()->client()->blockedError(request);
-}
-
-static String& privateBrowsingStorageSessionIdentifierBase()
-{
- ASSERT(isMainThread());
- DEFINE_STATIC_LOCAL(String, base, ());
- return base;
-}
-
-void WebFrameNetworkingContext::setPrivateBrowsingStorageSessionIdentifierBase(const String& identifier)
-{
- privateBrowsingStorageSessionIdentifierBase() = identifier;
-}
-
-void WebFrameNetworkingContext::ensurePrivateBrowsingSession()
-{
- // FIXME (NetworkProcess): Don't create an unnecessary session when using network process.
-
- ASSERT(isMainThread());
- if (privateBrowsingStorageSession())
- return;
-
- String identifierBase = privateBrowsingStorageSessionIdentifierBase().isNull() ? String([[NSBundle mainBundle] bundleIdentifier]) : privateBrowsingStorageSessionIdentifierBase();
-
- privateBrowsingStorageSession() = NetworkStorageSession::createPrivateBrowsingSession(identifierBase);
-}
-
-void WebFrameNetworkingContext::destroyPrivateBrowsingSession()
-{
- if (!privateBrowsingStorageSession)
- return;
-
- privateBrowsingStorageSession() = nullptr;
-}
-
-NetworkStorageSession& WebFrameNetworkingContext::storageSession() const
-{
- bool inPrivateBrowsingMode = frame() && frame()->settings() && frame()->settings()->privateBrowsingEnabled();
- if (inPrivateBrowsingMode) {
- ASSERT(privateBrowsingStorageSession());
- return *privateBrowsingStorageSession();
- }
- return NetworkStorageSession::defaultStorageSession();
-}
-
-void WebFrameNetworkingContext::setCookieAcceptPolicyForAllContexts(HTTPCookieAcceptPolicy policy)
-{
- [[NSHTTPCookieStorage sharedHTTPCookieStorage] setCookieAcceptPolicy:static_cast<NSHTTPCookieAcceptPolicy>(policy)];
-
- if (RetainPtr<CFHTTPCookieStorageRef> cookieStorage = NetworkStorageSession::defaultStorageSession().cookieStorage())
- WKSetHTTPCookieAcceptPolicy(cookieStorage.get(), policy);
-
- if (privateBrowsingStorageSession()) {
- WKSetHTTPCookieAcceptPolicy(privateBrowsingStorageSession()->cookieStorage().get(), policy);
- }
-}
-
-}