diff options
Diffstat (limited to 'widget/android/nsNativeBasicThemeAndroid.h')
-rw-r--r-- | widget/android/nsNativeBasicThemeAndroid.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/widget/android/nsNativeBasicThemeAndroid.h b/widget/android/nsNativeBasicThemeAndroid.h new file mode 100644 index 0000000000..a17efbfe5f --- /dev/null +++ b/widget/android/nsNativeBasicThemeAndroid.h @@ -0,0 +1,20 @@ +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- + * + * 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 nsNativeBasicThemeAndroid_h +#define nsNativeBasicThemeAndroid_h + +#include "nsNativeBasicTheme.h" + +class nsNativeBasicThemeAndroid : public nsNativeBasicTheme { + public: + nsNativeBasicThemeAndroid() = default; + + protected: + virtual ~nsNativeBasicThemeAndroid() = default; +}; + +#endif |