Coverage Report

Created: 2018-09-25 14:53

/src/mozilla-central/toolkit/components/printingui/ipc/PrintSettingsDialogParent.cpp
Line
Count
Source (jump to first uncovered line)
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
PrintSettingsDialogParent::PrintSettingsDialogParent()
12
0
{
13
0
  MOZ_COUNT_CTOR(PrintSettingsDialogParent);
14
0
}
15
16
PrintSettingsDialogParent::~PrintSettingsDialogParent()
17
0
{
18
0
  MOZ_COUNT_DTOR(PrintSettingsDialogParent);
19
0
}
20
21
void
22
PrintSettingsDialogParent::ActorDestroy(ActorDestroyReason aWhy)
23
0
{
24
0
}
25
26
} // namespace embedding
27
} // namespace mozilla
28