diff -r 000000000000 -r 6474c204b198 docshell/base/nsAboutRedirector.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/docshell/base/nsAboutRedirector.h Wed Dec 31 06:09:35 2014 +0100 @@ -0,0 +1,35 @@ +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* 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 nsAboutRedirector_h__ +#define nsAboutRedirector_h__ + +#include "nsIAboutModule.h" + +class nsAboutRedirector : public nsIAboutModule +{ +public: + NS_DECL_ISUPPORTS + + NS_DECL_NSIABOUTMODULE + + nsAboutRedirector() {} + virtual ~nsAboutRedirector() {} + + static nsresult + Create(nsISupports *aOuter, REFNSIID aIID, void **aResult); + +protected: +}; + +#define NS_ABOUT_REDIRECTOR_MODULE_CID \ +{ /* f0acde16-1dd1-11b2-9e35-f5786fff5a66*/ \ + 0xf0acde16, \ + 0x1dd1, \ + 0x11b2, \ + {0x9e, 0x35, 0xf5, 0x78, 0x6f, 0xff, 0x5a, 0x66} \ +} + +#endif // nsAboutRedirector_h__