blob: 72c6638fe8b9c1c4950b0df4c8545eb11f491169 [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/services/cups_ipp_parser/ipp_parser.h"
#include <memory>
#include <utility>
namespace cups_ipp_parser {
IppParser::IppParser(mojo::PendingReceiver<mojom::IppParser> receiver)
: receiver_(this, std::move(receiver)) {}
IppParser::~IppParser() = default;
void IppParser::ParseIpp(const std::vector<uint8_t>& to_parse,
ParseIppCallback callback) {
DVLOG(1) << "IppParser stubbed";
std::move(callback).Run(nullptr);
}
} // namespace cups_ipp_parser