Line data Source code
1 : /* This Source Code Form is subject to the terms of the Mozilla Public
2 : * License, v. 2.0. If a copy of the MPL was not distributed with this
3 : * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
4 :
5 : #include "PrintSettingsDialogParent.h"
6 :
7 : // C++ file contents
8 : namespace mozilla {
9 : namespace embedding {
10 :
11 0 : PrintSettingsDialogParent::PrintSettingsDialogParent()
12 : {
13 0 : MOZ_COUNT_CTOR(PrintSettingsDialogParent);
14 0 : }
15 :
16 0 : PrintSettingsDialogParent::~PrintSettingsDialogParent()
17 : {
18 0 : MOZ_COUNT_DTOR(PrintSettingsDialogParent);
19 0 : }
20 :
21 : void
22 0 : PrintSettingsDialogParent::ActorDestroy(ActorDestroyReason aWhy)
23 : {
24 0 : }
25 :
26 : } // namespace embedding
27 : } // namespace mozilla
28 :
|