blob: 1fa905818c0ecf5b06601a5784ac3aa59c0acdf0 [file] [log] [blame]
// Copyright 2019 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 "components/update_client/unzip/unzip_impl.h"
#include "components/services/unzip/public/cpp/unzip.h"
namespace update_client {
namespace {
class UnzipperImpl : public Unzipper {
public:
explicit UnzipperImpl(UnzipChromiumFactory::Callback callback)
: callback_(std::move(callback)) {}
void Unzip(const base::FilePath& zip_file,
const base::FilePath& destination,
UnzipCompleteCallback callback) override {
unzip::Unzip(callback_.Run(), zip_file, destination, std::move(callback));
}
private:
const UnzipChromiumFactory::Callback callback_;
};
} // namespace
UnzipChromiumFactory::UnzipChromiumFactory(Callback callback)
: callback_(std::move(callback)) {}
std::unique_ptr<Unzipper> UnzipChromiumFactory::Create() const {
return std::make_unique<UnzipperImpl>(callback_);
}
UnzipChromiumFactory::~UnzipChromiumFactory() = default;
} // namespace update_client