blob: bc9ba210b07dc86bd67d1ad4f72d349d84639c85 (
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
33
34
|
// 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 "printing/printing_context.h"
namespace printing {
PrintingContext::PrintingContext(const std::string& app_locale)
: dialog_box_dismissed_(false),
in_print_job_(false),
abort_printing_(false),
app_locale_(app_locale) {
}
PrintingContext::~PrintingContext() {
}
void PrintingContext::ResetSettings() {
ReleaseContext();
settings_.Clear();
in_print_job_ = false;
dialog_box_dismissed_ = false;
abort_printing_ = false;
}
PrintingContext::Result PrintingContext::OnError() {
ResetSettings();
return abort_printing_ ? CANCEL : FAILED;
}
} // namespace printing
|