2001-09-20 04:02:59 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
1999-06-11 02:08:59 +04:00
|
|
|
*
|
2001-09-20 04:02:59 +04:00
|
|
|
* The contents of this file are subject to the Netscape Public
|
1999-11-06 06:43:54 +03:00
|
|
|
* License Version 1.1 (the "License"); you may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy of
|
2001-09-20 04:02:59 +04:00
|
|
|
* the License at http://www.mozilla.org/NPL/
|
1999-06-11 02:08:59 +04:00
|
|
|
*
|
1999-11-06 06:43:54 +03:00
|
|
|
* 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.
|
1999-06-11 02:08:59 +04:00
|
|
|
*
|
1999-11-06 06:43:54 +03:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
2001-09-20 04:02:59 +04:00
|
|
|
* The Initial Developer of the Original Code is Netscape
|
|
|
|
* Communications Corporation. Portions created by Netscape are
|
1999-11-06 06:43:54 +03:00
|
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
|
|
|
* Rights Reserved.
|
|
|
|
*
|
2001-09-20 04:02:59 +04:00
|
|
|
* Contributor(s):
|
|
|
|
*/
|
1999-06-11 02:08:59 +04:00
|
|
|
|
|
|
|
#ifndef nsCookieHTTPNotify_h___
|
|
|
|
#define nsCookieHTTPNotify_h___
|
|
|
|
|
|
|
|
#include "nsIHttpNotify.h"
|
1999-11-30 01:02:20 +03:00
|
|
|
#include "nsICookieService.h"
|
2000-01-23 01:46:13 +03:00
|
|
|
#include "nsIComponentManager.h"
|
1999-06-11 02:08:59 +04:00
|
|
|
|
|
|
|
// {6BC1F522-1F45-11d3-8AD4-00105A1B8860}
|
|
|
|
#define NS_COOKIEHTTPNOTIFY_CID \
|
1999-11-20 11:04:59 +03:00
|
|
|
{ 0x6bc1f522, 0x1f45, 0x11d3, { 0x8a, 0xd4, 0x0, 0x10, 0x5a, 0x1b, 0x88, 0x60 } }
|
1999-06-11 02:08:59 +04:00
|
|
|
|
2000-09-14 03:57:52 +04:00
|
|
|
#define NS_COOKIEHTTPNOTIFY_CONTRACTID "@mozilla.org/cookie-notifier;1"
|
2000-01-23 01:46:13 +03:00
|
|
|
#define NS_COOKIEHTTPNOTIFY_CLASSNAME "Cookie Notifier"
|
1999-06-11 02:08:59 +04:00
|
|
|
|
2001-03-12 23:43:02 +03:00
|
|
|
struct nsModuleComponentInfo; // forward declaration
|
|
|
|
|
2001-05-12 01:05:08 +04:00
|
|
|
class nsCookieHTTPNotify : public nsIHttpNotify {
|
1999-06-11 02:08:59 +04:00
|
|
|
public:
|
|
|
|
|
1999-07-31 17:22:20 +04:00
|
|
|
// nsISupports
|
|
|
|
NS_DECL_ISUPPORTS
|
1999-06-11 02:08:59 +04:00
|
|
|
|
1999-11-24 00:57:05 +03:00
|
|
|
// Init method
|
|
|
|
NS_IMETHOD Init();
|
|
|
|
|
1999-07-31 17:22:20 +04:00
|
|
|
// nsIHttpNotify methods:
|
2001-05-12 01:05:08 +04:00
|
|
|
NS_DECL_NSIHTTPNOTIFY
|
1999-06-11 02:08:59 +04:00
|
|
|
|
1999-07-31 17:22:20 +04:00
|
|
|
// nsCookieHTTPNotify methods:
|
|
|
|
nsCookieHTTPNotify();
|
|
|
|
virtual ~nsCookieHTTPNotify();
|
1999-10-04 18:08:52 +04:00
|
|
|
|
2000-01-23 01:46:13 +03:00
|
|
|
static nsresult Create(nsISupports *aOuter, REFNSIID aIID, void **aResult);
|
2000-02-01 01:57:28 +03:00
|
|
|
static NS_METHOD RegisterProc(nsIComponentManager *aCompMgr,
|
|
|
|
nsIFile *aPath,
|
|
|
|
const char *registryLocation,
|
2001-03-12 23:43:02 +03:00
|
|
|
const char *componentType,
|
|
|
|
const nsModuleComponentInfo *info);
|
2000-02-01 01:57:28 +03:00
|
|
|
static NS_METHOD UnregisterProc(nsIComponentManager *aCompMgr,
|
|
|
|
nsIFile *aPath,
|
2001-03-12 23:43:02 +03:00
|
|
|
const char *registryLocation,
|
|
|
|
const nsModuleComponentInfo *info);
|
2000-01-23 01:46:13 +03:00
|
|
|
|
1999-06-11 02:08:59 +04:00
|
|
|
private:
|
2000-01-23 01:46:13 +03:00
|
|
|
nsCOMPtr<nsICookieService> mCookieService;
|
1999-11-30 01:02:20 +03:00
|
|
|
|
|
|
|
NS_IMETHOD SetupCookieService();
|
1999-06-11 02:08:59 +04:00
|
|
|
};
|
1999-07-05 07:48:42 +04:00
|
|
|
#endif /* nsCookieHTTPNotify_h___ */
|