chromium/components/reporting/compression/decompression.cc

// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/reporting/compression/decompression.h"

#include <string>
#include <utility>

#include "base/functional/bind.h"
#include "base/functional/callback.h"
#include "base/memory/ref_counted.h"
#include "base/metrics/histogram_functions.h"
#include "base/task/thread_pool.h"
#include "components/reporting/proto/synced/record.pb.h"
#include "third_party/snappy/src/snappy.h"

namespace reporting {

namespace {

std::string DecompressRecordSnappy(std::string record) {}
}  // namespace

// static
scoped_refptr<Decompression> Decompression::Create() {}

std::string Decompression::DecompressRecord(
    std::string record,
    CompressionInformation compression_information) {}

Decompression::Decompression() = default;
Decompression::~Decompression() = default;

}  // namespace reporting