// Copyright 2019 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/update_client/unzip/unzip_impl.h" #include "components/services/unzip/public/cpp/unzip.h" namespace update_client { namespace { class UnzipperImpl : public Unzipper { … }; } // namespace UnzipChromiumFactory::UnzipChromiumFactory(Callback callback) : … { … } std::unique_ptr<Unzipper> UnzipChromiumFactory::Create() const { … } UnzipChromiumFactory::~UnzipChromiumFactory() = default; } // namespace update_client