| OLD | NEW |
| 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 <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 // Reads the settings from the selected device context. Updates settings_ and | 46 // Reads the settings from the selected device context. Updates settings_ and |
| 47 // its margins. | 47 // its margins. |
| 48 virtual Result InitializeSettings(const base::string16& device_name, | 48 virtual Result InitializeSettings(const base::string16& device_name, |
| 49 DEVMODE* dev_mode); | 49 DEVMODE* dev_mode); |
| 50 | 50 |
| 51 HDC contest() const { return context_; } | 51 HDC contest() const { return context_; } |
| 52 | 52 |
| 53 void set_context(HDC context) { context_ = context; } | 53 void set_context(HDC context) { context_ = context; } |
| 54 | 54 |
| 55 private: | 55 private: |
| 56 virtual scoped_ptr<DEVMODE, base::FreeDeleter> ShowPrintDialog( | |
| 57 HANDLE printer, | |
| 58 gfx::NativeView parent_view, | |
| 59 DEVMODE* dev_mode); | |
| 60 | |
| 61 // Used in response to the user canceling the printing. | 56 // Used in response to the user canceling the printing. |
| 62 static BOOL CALLBACK AbortProc(HDC hdc, int nCode); | 57 static BOOL CALLBACK AbortProc(HDC hdc, int nCode); |
| 63 | 58 |
| 64 // The selected printer context. | 59 // The selected printer context. |
| 65 HDC context_; | 60 HDC context_; |
| 66 | 61 |
| 67 DISALLOW_COPY_AND_ASSIGN(PrintingContextWin); | 62 DISALLOW_COPY_AND_ASSIGN(PrintingContextWin); |
| 68 }; | 63 }; |
| 69 | 64 |
| 70 } // namespace printing | 65 } // namespace printing |
| 71 | 66 |
| 72 #endif // PRINTING_PRINTING_CONTEXT_WIN_H_ | 67 #endif // PRINTING_PRINTING_CONTEXT_WIN_H_ |
| OLD | NEW |