Backed out changeset f1426851ae30 (bug 1844755) for causing failures on test_printpre...
[gecko.git] / widget / android / nsWidgetFactory.cpp
blob00ebd20dd96700081b182a38db4af385d5e5a8a9
1 /* -*- Mode: C++; tab-width: 4; 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 #include "mozilla/WidgetUtils.h"
8 #include "nsAppShell.h"
10 #include "nsLookAndFeel.h"
11 #include "nsAppShellSingleton.h"
13 nsresult nsWidgetAndroidModuleCtor() { return nsAppShellInit(); }
15 void nsWidgetAndroidModuleDtor() {
16 // Shutdown all XP level widget classes.
17 mozilla::widget::WidgetUtils::Shutdown();
19 nsLookAndFeel::Shutdown();
20 nsAppShellShutdown();