blob: b88578ba5269a3b9132757a64ef823e9f7ae4691 [file] [log] [blame]
[email protected]ea5e81d92011-11-08 18:45:151// Copyright (c) 2011 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef PRINTING_PRINTING_CONTEXT_NO_SYSTEM_DIALOG_H_
6#define PRINTING_PRINTING_CONTEXT_NO_SYSTEM_DIALOG_H_
7
8#include <string>
9
10#include "printing/printing_context.h"
11
12namespace base {
13class DictionaryValue;
14}
15
16namespace printing {
17
[email protected]ea5e81d92011-11-08 18:45:1518class PRINTING_EXPORT PrintingContextNoSystemDialog : public PrintingContext {
19 public:
20 explicit PrintingContextNoSystemDialog(const std::string& app_locale);
21 virtual ~PrintingContextNoSystemDialog();
22
23 // PrintingContext implementation.
[email protected]abe48112011-11-19 01:58:3824 virtual void AskUserForSettings(
25 gfx::NativeView parent_view,
26 int max_pages,
27 bool has_selection,
28 const PrintSettingsCallback& callback) OVERRIDE;
29 virtual Result UseDefaultSettings() OVERRIDE;
[email protected]ea5e81d92011-11-08 18:45:1530 virtual Result UpdatePrinterSettings(
31 const base::DictionaryValue& job_settings,
[email protected]abe48112011-11-19 01:58:3832 const PageRanges& ranges) OVERRIDE;
33 virtual Result InitWithSettings(const PrintSettings& settings) OVERRIDE;
34 virtual Result NewDocument(const string16& document_name) OVERRIDE;
35 virtual Result NewPage() OVERRIDE;
36 virtual Result PageDone() OVERRIDE;
37 virtual Result DocumentDone() OVERRIDE;
38 virtual void Cancel() OVERRIDE;
39 virtual void ReleaseContext() OVERRIDE;
40 virtual gfx::NativeDrawingContext context() const OVERRIDE;
[email protected]ea5e81d92011-11-08 18:45:1541
42 private:
43 DISALLOW_COPY_AND_ASSIGN(PrintingContextNoSystemDialog);
44};
45
46} // namespace printing
47
48#endif // PRINTING_PRINTING_CONTEXT_NO_SYSTEM_DIALOG_H_