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

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

Issue 2105463002: Create a new print backend for the updated CUPS APIs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix typos. Created 4 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/backend/cups_connection.cc ('k') | printing/backend/cups_deleters.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef PRINTING_BACKEND_CUPS_DELETERS_H_
6 #define PRINTING_BACKEND_CUPS_DELETERS_H_
7
8 #include <cups/cups.h>
9
10 namespace printing {
11
12 struct HttpDeleter {
13 public:
14 void operator()(http_t* http) const;
15 };
16
17 struct DestinationDeleter {
18 public:
19 void operator()(cups_dest_t* dest) const;
20 };
21
22 struct DestInfoDeleter {
23 public:
24 void operator()(cups_dinfo_t* info) const;
25 };
26
27 } // namespace printing
28
29 #endif // PRINTING_BACKEND_CUPS_DELETERS_H_
OLDNEW
« no previous file with comments | « printing/backend/cups_connection.cc ('k') | printing/backend/cups_deleters.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698