blob: 2179d4b4f0bfe532c58a65d9aa34020eea4a32e2 [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.
#ifndef CHROME_UPDATER_UNZIPPER_H_
#define CHROME_UPDATER_UNZIPPER_H_
#include <memory>
#include "components/update_client/unzipper.h"
namespace updater {
class UnzipperFactory : public update_client::UnzipperFactory {
public:
UnzipperFactory();
UnzipperFactory(const UnzipperFactory&) = delete;
UnzipperFactory& operator=(const UnzipperFactory&) = delete;
std::unique_ptr<update_client::Unzipper> Create() const override;
protected:
~UnzipperFactory() override;
};
} // namespace updater
#endif // CHROME_UPDATER_UNZIPPER_H_