// Copyright 2016 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "printing/backend/cups_deleters.h" namespace printing { void HttpDeleter::operator()(http_t* http) const { … } void DestinationDeleter::operator()(cups_dest_t* dest) const { … } void DestInfoDeleter::operator()(cups_dinfo_t* info) const { … } void OptionDeleter::operator()(cups_option_t* option) const { … } } // namespace printing