Bug 767636 - Expose plugin fallback type to extensions. r=josh
[gecko.git] / layout / forms / nsGfxRadioControlFrame.h
blob5cbe16f008b110eff810407d15ff579f1e9de6a2
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 #ifndef nsGfxRadioControlFrame_h___
7 #define nsGfxRadioControlFrame_h___
9 #include "nsFormControlFrame.h"
11 #ifdef ACCESSIBILITY
12 class nsIAccessible;
13 #endif
15 // nsGfxRadioControlFrame
17 class nsGfxRadioControlFrame : public nsFormControlFrame
19 public:
20 nsGfxRadioControlFrame(nsStyleContext* aContext);
21 ~nsGfxRadioControlFrame();
23 NS_DECL_FRAMEARENA_HELPERS
25 #ifdef ACCESSIBILITY
26 virtual already_AddRefed<Accessible> CreateAccessible();
27 #endif
29 NS_IMETHOD BuildDisplayList(nsDisplayListBuilder* aBuilder,
30 const nsRect& aDirtyRect,
31 const nsDisplayListSet& aLists);
34 #endif