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

Side by Side Diff: printing/printing_context_win.h

Issue 1216013005: Fixed all overloaded virtual methods on Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Finish fixes. Created 5 years, 5 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 | « printing/printing_context_system_dialog_win.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 <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
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_
OLDNEW
« no previous file with comments | « printing/printing_context_system_dialog_win.cc ('k') | printing/printing_context_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698