2015-02-13 22:36:47 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-05-21 15:12:37 +04:00
|
|
|
/* 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/. */
|
2006-09-15 13:51:36 +04:00
|
|
|
|
|
|
|
#ifndef nsAboutRedirector_h__
|
|
|
|
#define nsAboutRedirector_h__
|
|
|
|
|
|
|
|
#include "nsIAboutModule.h"
|
|
|
|
|
|
|
|
class nsAboutRedirector : public nsIAboutModule {
|
|
|
|
public:
|
2015-02-13 22:36:37 +03:00
|
|
|
NS_DECL_ISUPPORTS
|
2006-09-15 13:51:36 +04:00
|
|
|
|
2015-02-13 22:36:37 +03:00
|
|
|
NS_DECL_NSIABOUTMODULE
|
2006-09-15 13:51:36 +04:00
|
|
|
|
2015-02-13 22:36:37 +03:00
|
|
|
nsAboutRedirector() {}
|
2006-09-15 13:51:36 +04:00
|
|
|
|
2015-02-13 22:36:37 +03:00
|
|
|
static nsresult Create(nsISupports* aOuter, REFNSIID aIID, void** aResult);
|
2006-09-15 13:51:36 +04:00
|
|
|
|
|
|
|
protected:
|
2015-02-13 22:36:37 +03:00
|
|
|
virtual ~nsAboutRedirector() {}
|
2006-09-15 13:51:36 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // nsAboutRedirector_h__
|