зеркало из https://github.com/mozilla/gecko-dev.git
67 строки
2.3 KiB
C++
67 строки
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();
|
|
|
|
void TrackCookieLoad(nsIChannel *aChannel);
|
|
|
|
void RemoveBatchDeletedCookies(nsIArray *aCookieList);
|
|
|
|
void RemoveAll();
|
|
|
|
void RemoveCookie(nsICookie *aCookie);
|
|
|
|
void AddCookie(nsICookie *aCookie);
|
|
|
|
protected:
|
|
virtual void ActorDestroy(ActorDestroyReason aWhy) override;
|
|
|
|
virtual mozilla::ipc::IPCResult RecvGetCookieString(const URIParams& aHost,
|
|
const bool& aIsForeign,
|
|
const OriginAttributes& aAttrs,
|
|
nsCString* aResult) override;
|
|
|
|
virtual mozilla::ipc::IPCResult RecvSetCookieString(const URIParams& aHost,
|
|
const bool& aIsForeign,
|
|
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 OriginAttributes &aAttrs) override;
|
|
|
|
void
|
|
SerialializeCookieList(const nsTArray<nsCookie*> &aFoundCookieList,
|
|
nsTArray<CookieStruct> &aCookiesList,
|
|
nsIURI *aHostURI);
|
|
|
|
RefPtr<nsCookieService> mCookieService;
|
|
};
|
|
|
|
} // namespace net
|
|
} // namespace mozilla
|
|
|
|
#endif // mozilla_net_CookieServiceParent_h
|
|
|