Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(479)

Side by Side Diff: printing/printing_context_win.h

Issue 47823002: De-duplicate job_settings parsing code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Noam's comments Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « printing/printing_context_no_system_dialog.cc ('k') | printing/printing_context_win.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef PRINTING_PRINTING_CONTEXT_WIN_H_ 5 #ifndef PRINTING_PRINTING_CONTEXT_WIN_H_
6 #define PRINTING_PRINTING_CONTEXT_WIN_H_ 6 #define PRINTING_PRINTING_CONTEXT_WIN_H_
7 7
8 #include <ocidl.h> 8 #include <ocidl.h>
9 #include <commdlg.h> 9 #include <commdlg.h>
10 10
(...skipping 14 matching lines...) Expand all
25 explicit PrintingContextWin(const std::string& app_locale); 25 explicit PrintingContextWin(const std::string& app_locale);
26 ~PrintingContextWin(); 26 ~PrintingContextWin();
27 27
28 // PrintingContext implementation. 28 // PrintingContext implementation.
29 virtual void AskUserForSettings( 29 virtual void AskUserForSettings(
30 gfx::NativeView parent_view, 30 gfx::NativeView parent_view,
31 int max_pages, 31 int max_pages,
32 bool has_selection, 32 bool has_selection,
33 const PrintSettingsCallback& callback) OVERRIDE; 33 const PrintSettingsCallback& callback) OVERRIDE;
34 virtual Result UseDefaultSettings() OVERRIDE; 34 virtual Result UseDefaultSettings() OVERRIDE;
35 virtual Result UpdatePrinterSettings( 35 virtual Result UpdatePrinterSettings(bool target_is_pdf,
36 const base::DictionaryValue& job_settings, 36 bool external_preview) OVERRIDE;
37 const PageRanges& ranges) OVERRIDE;
38 virtual Result InitWithSettings(const PrintSettings& settings) OVERRIDE; 37 virtual Result InitWithSettings(const PrintSettings& settings) OVERRIDE;
39 virtual Result NewDocument(const base::string16& document_name) OVERRIDE; 38 virtual Result NewDocument(const base::string16& document_name) OVERRIDE;
40 virtual Result NewPage() OVERRIDE; 39 virtual Result NewPage() OVERRIDE;
41 virtual Result PageDone() OVERRIDE; 40 virtual Result PageDone() OVERRIDE;
42 virtual Result DocumentDone() OVERRIDE; 41 virtual Result DocumentDone() OVERRIDE;
43 virtual void Cancel() OVERRIDE; 42 virtual void Cancel() OVERRIDE;
44 virtual void ReleaseContext() OVERRIDE; 43 virtual void ReleaseContext() OVERRIDE;
45 virtual gfx::NativeDrawingContext context() const OVERRIDE; 44 virtual gfx::NativeDrawingContext context() const OVERRIDE;
46 45
47 // PrintSettingsDialogWin::Observer implementation: 46 // PrintSettingsDialogWin::Observer implementation:
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 99
101 // Wrapper around native print dialog that runs it on a background thread. 100 // Wrapper around native print dialog that runs it on a background thread.
102 scoped_refptr<ui::PrintSettingsDialogWin> print_settings_dialog_; 101 scoped_refptr<ui::PrintSettingsDialogWin> print_settings_dialog_;
103 102
104 DISALLOW_COPY_AND_ASSIGN(PrintingContextWin); 103 DISALLOW_COPY_AND_ASSIGN(PrintingContextWin);
105 }; 104 };
106 105
107 } // namespace printing 106 } // namespace printing
108 107
109 #endif // PRINTING_PRINTING_CONTEXT_WIN_H_ 108 #endif // PRINTING_PRINTING_CONTEXT_WIN_H_
OLDNEW
« no previous file with comments | « printing/printing_context_no_system_dialog.cc ('k') | printing/printing_context_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698