зеркало из https://github.com/mozilla/gecko-dev.git
70 строки
2.3 KiB
C++
70 строки
2.3 KiB
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#ifndef mozilla_net_CookieServiceParent_h
|
|
#define mozilla_net_CookieServiceParent_h
|
|
|
|
#include "mozilla/net/PCookieServiceParent.h"
|
|
|
|
class nsCookie;
|
|
class nsICookie;
|
|
class nsCookieService;
|
|
namespace mozilla {
|
|
class OriginAttributes;
|
|
}
|
|
|
|
namespace mozilla {
|
|
namespace net {
|
|
|
|
class CookieServiceParent : public PCookieServiceParent {
|
|
public:
|
|
CookieServiceParent();
|
|
virtual ~CookieServiceParent() = default;
|
|
|
|
void TrackCookieLoad(nsIChannel *aChannel);
|
|
|
|
void RemoveBatchDeletedCookies(nsIArray *aCookieList);
|
|
|
|
void RemoveAll();
|
|
|
|
void RemoveCookie(nsICookie *aCookie);
|
|
|
|
void AddCookie(nsICookie *aCookie);
|
|
|
|
// This will return true if the CookieServiceParent is currently processing
|
|
// an update from the content process. This is used in ContentParent to make
|
|
// sure that we are only forwarding those cookie updates to other content
|
|
// processes, not the one they originated from.
|
|
bool ProcessingCookie() { return mProcessingCookie; }
|
|
|
|
protected:
|
|
virtual void ActorDestroy(ActorDestroyReason aWhy) override;
|
|
|
|
virtual mozilla::ipc::IPCResult RecvSetCookieString(
|
|
const URIParams &aHost, const OptionalURIParams &aChannelURI,
|
|
const bool &aIsForeign, const bool &aIsTrackingResource,
|
|
const bool &aFirstPartyStorageAccessGranted,
|
|
const nsCString &aCookieString, const nsCString &aServerTime,
|
|
const OriginAttributes &aAttrs, const bool &aFromHttp) override;
|
|
virtual mozilla::ipc::IPCResult RecvPrepareCookieList(
|
|
const URIParams &aHost, const bool &aIsForeign,
|
|
const bool &aIsTackingResource,
|
|
const bool &aFirstPartyStorageAccessGranted,
|
|
const bool &aIsSafeTopLevelNav, const bool &aIsSameSiteForeign,
|
|
const OriginAttributes &aAttrs) override;
|
|
|
|
void SerialializeCookieList(const nsTArray<nsCookie *> &aFoundCookieList,
|
|
nsTArray<CookieStruct> &aCookiesList,
|
|
nsIURI *aHostURI);
|
|
|
|
RefPtr<nsCookieService> mCookieService;
|
|
bool mProcessingCookie;
|
|
};
|
|
|
|
} // namespace net
|
|
} // namespace mozilla
|
|
|
|
#endif // mozilla_net_CookieServiceParent_h
|