blob: 5472a811187c0170b5326574ab971b6f4737a8f1 [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]4c9054b2013-11-04 18:34:2930 virtual gfx::Size GetPdfPaperSizeDeviceUnits() OVERRIDE;
31 virtual Result UpdatePrinterSettings(bool external_preview) OVERRIDE;
[email protected]abe48112011-11-19 01:58:3832 virtual Result InitWithSettings(const PrintSettings& settings) OVERRIDE;
[email protected]b5fa4ee2013-10-01 07:19:0733 virtual Result NewDocument(const base::string16& document_name) OVERRIDE;
[email protected]abe48112011-11-19 01:58:3834 virtual Result NewPage() OVERRIDE;
35 virtual Result PageDone() OVERRIDE;
36 virtual Result DocumentDone() OVERRIDE;
37 virtual void Cancel() OVERRIDE;
38 virtual void ReleaseContext() OVERRIDE;
39 virtual gfx::NativeDrawingContext context() const OVERRIDE;
[email protected]ea5e81d92011-11-08 18:45:1540
41 private:
42 DISALLOW_COPY_AND_ASSIGN(PrintingContextNoSystemDialog);
43};
44
45} // namespace printing
46
47#endif // PRINTING_PRINTING_CONTEXT_NO_SYSTEM_DIALOG_H_