mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 12:15:51 +00:00
73 lines
2.4 KiB
C++
73 lines
2.4 KiB
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
*
|
|
* The contents of this file are subject to the Netscape Public
|
|
* License Version 1.1 (the "License"); you may not use this file
|
|
* except in compliance with the License. You may obtain a copy of
|
|
* the License at http://www.mozilla.org/NPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS
|
|
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
* implied. See the License for the specific language governing
|
|
* rights and limitations under the License.
|
|
*
|
|
* The Original Code is mozilla.org code.
|
|
*
|
|
* The Initial Developer of the Original Code is Netscape
|
|
* Communications Corporation. Portions created by Netscape are
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
|
* Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
*/
|
|
|
|
#ifndef nsCookieHTTPNotify_h___
|
|
#define nsCookieHTTPNotify_h___
|
|
|
|
#include "nsIHttpNotify.h"
|
|
#include "nsIAtom.h"
|
|
#include "nsICookieService.h"
|
|
#include "nsIComponentManager.h"
|
|
|
|
// {6BC1F522-1F45-11d3-8AD4-00105A1B8860}
|
|
#define NS_COOKIEHTTPNOTIFY_CID \
|
|
{ 0x6bc1f522, 0x1f45, 0x11d3, { 0x8a, 0xd4, 0x0, 0x10, 0x5a, 0x1b, 0x88, 0x60 } }
|
|
|
|
#define NS_COOKIEHTTPNOTIFY_PROGID "component://netscape/cookie-notifier"
|
|
#define NS_COOKIEHTTPNOTIFY_CLASSNAME "Cookie Notifier"
|
|
|
|
class nsCookieHTTPNotify : public nsIHTTPNotify {
|
|
public:
|
|
|
|
// nsISupports
|
|
NS_DECL_ISUPPORTS
|
|
|
|
// Init method
|
|
NS_IMETHOD Init();
|
|
|
|
// nsIHttpNotify methods:
|
|
NS_IMETHOD ModifyRequest(nsISupports *aContext);
|
|
NS_IMETHOD AsyncExamineResponse(nsISupports *aContext);
|
|
|
|
// nsCookieHTTPNotify methods:
|
|
nsCookieHTTPNotify();
|
|
virtual ~nsCookieHTTPNotify();
|
|
|
|
static nsresult Create(nsISupports *aOuter, REFNSIID aIID, void **aResult);
|
|
static NS_METHOD RegisterProc(nsIComponentManager *aCompMgr,
|
|
nsIFile *aPath,
|
|
const char *registryLocation,
|
|
const char *componentType);
|
|
static NS_METHOD UnregisterProc(nsIComponentManager *aCompMgr,
|
|
nsIFile *aPath,
|
|
const char *registryLocation);
|
|
|
|
private:
|
|
nsCOMPtr<nsIAtom> mCookieHeader;
|
|
nsCOMPtr<nsIAtom> mSetCookieHeader;
|
|
nsCOMPtr<nsIAtom> mExpiresHeader;
|
|
nsCOMPtr<nsICookieService> mCookieService;
|
|
|
|
NS_IMETHOD SetupCookieService();
|
|
};
|
|
#endif /* nsCookieHTTPNotify_h___ */
|