Beautify...

This commit is contained in:
dp%netscape.com 1999-11-23 07:54:25 +00:00
parent add180df18
commit 0b38786a86

View File

@ -1,4 +1,4 @@
/* -*- Mode: IDL; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
/* -*- Mode: c++; tab-width: 4; 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
@ -38,7 +38,8 @@ NS_IMPL_ISUPPORTS2(nsCookieHTTPNotify, nsIHTTPNotify, nsINetNotify);
///////////////////////////////////
// nsCookieHTTPNotify Implementation
NS_COOKIE nsresult NS_NewCookieHTTPNotify(nsIHTTPNotify** aHTTPNotify) {
NS_COOKIE nsresult NS_NewCookieHTTPNotify(nsIHTTPNotify** aHTTPNotify)
{
if (aHTTPNotify == NULL) {
return NS_ERROR_NULL_POINTER;
}
@ -49,15 +50,18 @@ NS_COOKIE nsresult NS_NewCookieHTTPNotify(nsIHTTPNotify** aHTTPNotify) {
return it->QueryInterface(nsIHTTPNotify::GetIID(), (void **) aHTTPNotify);
}
nsCookieHTTPNotify::nsCookieHTTPNotify() {
nsCookieHTTPNotify::nsCookieHTTPNotify()
{
NS_INIT_REFCNT();
}
nsCookieHTTPNotify::~nsCookieHTTPNotify() {
nsCookieHTTPNotify::~nsCookieHTTPNotify()
{
}
NS_METHOD
nsCookieHTTPNotify::Create(nsISupports *aOuter, REFNSIID aIID, void **aResult) {
nsCookieHTTPNotify::Create(nsISupports *aOuter, REFNSIID aIID, void **aResult)
{
if (! aResult) {
return NS_ERROR_NULL_POINTER;
}
@ -85,7 +89,8 @@ nsCookieHTTPNotify::Create(nsISupports *aOuter, REFNSIID aIID, void **aResult) {
// nsIHTTPNotify
NS_IMETHODIMP
nsCookieHTTPNotify::ModifyRequest(nsISupports *aContext) {
nsCookieHTTPNotify::ModifyRequest(nsISupports *aContext)
{
nsresult rv;
nsIHTTPChannel* pHTTPConnection= nsnull;
if (aContext) {
@ -144,7 +149,8 @@ nsCookieHTTPNotify::ModifyRequest(nsISupports *aContext) {
}
NS_IMETHODIMP
nsCookieHTTPNotify::AsyncExamineResponse(nsISupports *aContext) {
nsCookieHTTPNotify::AsyncExamineResponse(nsISupports *aContext)
{
nsresult rv;
nsIHTTPChannel* pHTTPConnection= nsnull;
if (aContext) {