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

Side by Side Diff: chrome/browser/printing/print_view_manager.h

Issue 517193003: More System Dialog printing code disabled on Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@522493002
Patch Set: Mon Sep 8 01:10:20 PDT 2014 Created 6 years, 3 months 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
« no previous file with comments | « chrome/app/chrome_dll.rc ('k') | chrome/browser/printing/print_view_manager.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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 CHROME_BROWSER_PRINTING_PRINT_VIEW_MANAGER_H_ 5 #ifndef CHROME_BROWSER_PRINTING_PRINT_VIEW_MANAGER_H_
6 #define CHROME_BROWSER_PRINTING_PRINT_VIEW_MANAGER_H_ 6 #define CHROME_BROWSER_PRINTING_PRINT_VIEW_MANAGER_H_
7 7
8 #include "chrome/browser/printing/print_view_manager_base.h" 8 #include "chrome/browser/printing/print_view_manager_base.h"
9 #include "content/public/browser/web_contents_user_data.h" 9 #include "content/public/browser/web_contents_user_data.h"
10 10
11 namespace content { 11 namespace content {
12 class RenderProcessHost; 12 class RenderProcessHost;
13 } 13 }
14 14
15 namespace printing { 15 namespace printing {
16 16
17 class PrintViewManagerObserver; 17 class PrintViewManagerObserver;
18 18
19 // Manages the print commands for a WebContents. 19 // Manages the print commands for a WebContents.
20 class PrintViewManager : public PrintViewManagerBase, 20 class PrintViewManager : public PrintViewManagerBase,
21 public content::WebContentsUserData<PrintViewManager> { 21 public content::WebContentsUserData<PrintViewManager> {
22 public: 22 public:
23 virtual ~PrintViewManager(); 23 virtual ~PrintViewManager();
24 24
25 #if !defined(DISABLE_BASIC_PRINTING)
25 // Same as PrintNow(), but for the case where a user prints with the system 26 // Same as PrintNow(), but for the case where a user prints with the system
26 // dialog from print preview. 27 // dialog from print preview.
27 bool PrintForSystemDialogNow(); 28 bool PrintForSystemDialogNow();
28 29
29 // Same as PrintNow(), but for the case where a user press "ctrl+shift+p" to 30 // Same as PrintNow(), but for the case where a user press "ctrl+shift+p" to
30 // show the native system dialog. This can happen from both initiator and 31 // show the native system dialog. This can happen from both initiator and
31 // preview dialog. 32 // preview dialog.
32 bool AdvancedPrintNow(); 33 bool BasicPrint();
34 #endif // !DISABLE_BASIC_PRINTING
33 35
34 // Initiate print preview of the current document by first notifying the 36 // Initiate print preview of the current document by first notifying the
35 // renderer. Since this happens asynchronous, the print preview dialog 37 // renderer. Since this happens asynchronous, the print preview dialog
36 // creation will not be completed on the return of this function. Returns 38 // creation will not be completed on the return of this function. Returns
37 // false if print preview is impossible at the moment. 39 // false if print preview is impossible at the moment.
38 bool PrintPreviewNow(bool selection_only); 40 bool PrintPreviewNow(bool selection_only);
39 41
40 // Notify PrintViewManager that print preview is starting in the renderer for 42 // Notify PrintViewManager that print preview is starting in the renderer for
41 // a particular WebNode. 43 // a particular WebNode.
42 void PrintPreviewForWebNode(); 44 void PrintPreviewForWebNode();
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 84
83 // Keeps track of the pending callback during scripted print preview. 85 // Keeps track of the pending callback during scripted print preview.
84 content::RenderProcessHost* scripted_print_preview_rph_; 86 content::RenderProcessHost* scripted_print_preview_rph_;
85 87
86 DISALLOW_COPY_AND_ASSIGN(PrintViewManager); 88 DISALLOW_COPY_AND_ASSIGN(PrintViewManager);
87 }; 89 };
88 90
89 } // namespace printing 91 } // namespace printing
90 92
91 #endif // CHROME_BROWSER_PRINTING_PRINT_VIEW_MANAGER_H_ 93 #endif // CHROME_BROWSER_PRINTING_PRINT_VIEW_MANAGER_H_
OLDNEW
« no previous file with comments | « chrome/app/chrome_dll.rc ('k') | chrome/browser/printing/print_view_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698