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

Side by Side Diff: chrome/service/cloud_print/cdd_conversion_win.cc

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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 #include "chrome/service/cloud_print/cdd_conversion_win.h" 5 #include "chrome/service/cloud_print/cdd_conversion_win.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 8
9 #include "base/memory/free_deleter.h"
9 #include "base/strings/string_number_conversions.h" 10 #include "base/strings/string_number_conversions.h"
10 #include "components/cloud_devices/common/printer_description.h" 11 #include "components/cloud_devices/common/printer_description.h"
11 #include "printing/backend/win_helper.h" 12 #include "printing/backend/win_helper.h"
12 13
13 namespace cloud_print { 14 namespace cloud_print {
14 15
15 bool IsValidCjt(const std::string& print_ticket_data) { 16 bool IsValidCjt(const std::string& print_ticket_data) {
16 cloud_devices::CloudDeviceDescription description; 17 cloud_devices::CloudDeviceDescription description;
17 return description.InitFromString(print_ticket_data); 18 return description.InitFromString(print_ticket_data);
18 } 19 }
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 dev_mode->dmPaperWidth = width; 125 dev_mode->dmPaperWidth = width;
125 dev_mode->dmFields |= DM_PAPERLENGTH; 126 dev_mode->dmFields |= DM_PAPERLENGTH;
126 dev_mode->dmPaperLength = height; 127 dev_mode->dmPaperLength = height;
127 } 128 }
128 } 129 }
129 130
130 return printing::CreateDevMode(printer.Get(), dev_mode.get()); 131 return printing::CreateDevMode(printer.Get(), dev_mode.get());
131 } 132 }
132 133
133 } // namespace cloud_print 134 } // namespace cloud_print
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698