Bug 1470678 [wpt PR 11640] - Add a test for text-decoration in tables quirk, a=testonly
[gecko.git] / docshell / base / nsAboutRedirector.h
blobf8e6b2558f598ef719058bca72f4f1979205599c
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #ifndef nsAboutRedirector_h__
8 #define nsAboutRedirector_h__
10 #include "nsIAboutModule.h"
12 class nsAboutRedirector : public nsIAboutModule
14 public:
15 NS_DECL_ISUPPORTS
17 NS_DECL_NSIABOUTMODULE
19 nsAboutRedirector() {}
21 static nsresult Create(nsISupports* aOuter, REFNSIID aIID, void** aResult);
23 protected:
24 virtual ~nsAboutRedirector() {}
27 /* 56ebedd4-6ccf-48e8-bdae-adc77f044567 */
28 #define NS_ABOUT_REDIRECTOR_MODULE_CID \
29 { 0x56ebedd4, 0x6ccf, 0x48e8, \
30 { 0xbd, 0xae, 0xad, 0xc7, 0x7f, 0x04, 0x45, 0x67 } }
32 #endif // nsAboutRedirector_h__