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

Side by Side Diff: printing/backend/win_helper.h

Issue 1837483003: Move base::FreeDeleter into its own header. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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
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 PRINTING_BACKEND_WIN_HELPER_H_ 5 #ifndef PRINTING_BACKEND_WIN_HELPER_H_
6 #define PRINTING_BACKEND_WIN_HELPER_H_ 6 #define PRINTING_BACKEND_WIN_HELPER_H_
7 7
8 #include <objidl.h> 8 #include <objidl.h>
9 #include <prntvpt.h> 9 #include <prntvpt.h>
10 #include <winspool.h> 10 #include <winspool.h>
11 #include <xpsprint.h> 11 #include <xpsprint.h>
12 12
13 #include <string> 13 #include <string>
14 14
15 #include "base/macros.h" 15 #include "base/macros.h"
16 #include "base/memory/free_deleter.h"
16 #include "base/memory/scoped_ptr.h" 17 #include "base/memory/scoped_ptr.h"
17 #include "base/strings/string16.h" 18 #include "base/strings/string16.h"
18 #include "base/win/scoped_handle.h" 19 #include "base/win/scoped_handle.h"
19 #include "printing/printing_export.h" 20 #include "printing/printing_export.h"
20 21
21 // These are helper functions for dealing with Windows Printing. 22 // These are helper functions for dealing with Windows Printing.
22 namespace printing { 23 namespace printing {
23 24
24 struct PRINTING_EXPORT PrinterBasicInfo; 25 struct PRINTING_EXPORT PrinterBasicInfo;
25 26
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
191 PRINTING_EXPORT scoped_ptr<DEVMODE, base::FreeDeleter> PromptDevMode( 192 PRINTING_EXPORT scoped_ptr<DEVMODE, base::FreeDeleter> PromptDevMode(
192 HANDLE printer, 193 HANDLE printer,
193 const base::string16& printer_name, 194 const base::string16& printer_name,
194 DEVMODE* in, 195 DEVMODE* in,
195 HWND window, 196 HWND window,
196 bool* canceled); 197 bool* canceled);
197 198
198 } // namespace printing 199 } // namespace printing
199 200
200 #endif // PRINTING_BACKEND_WIN_HELPER_H_ 201 #endif // PRINTING_BACKEND_WIN_HELPER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698