blob: f15d6b801859e0c4038e4824f177de54537ea244 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/service/cloud_print/print_system.h"
namespace cloud_print {
PrintJobDetails::PrintJobDetails()
: status(PRINT_JOB_STATUS_INVALID),
platform_status_flags(0),
total_pages(0),
pages_printed(0) {
}
void PrintJobDetails::Clear() {
status = PRINT_JOB_STATUS_INVALID;
platform_status_flags = 0;
status_message.clear();
total_pages = 0;
pages_printed = 0;
}
PrintSystem::PrintServerWatcher::~PrintServerWatcher() {}
PrintSystem::PrinterWatcher::~PrinterWatcher() {}
PrintSystem::JobSpooler::~JobSpooler() {}
PrintSystem::~PrintSystem() {}
} // namespace cloud_print
|