// 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. #ifndef COMPONENTS_UPDATE_CLIENT_UNZIPPER_H_ #define COMPONENTS_UPDATE_CLIENT_UNZIPPER_H_ #include "base/functional/callback_forward.h" #include "base/memory/ref_counted.h" namespace base { class FilePath; } // namespace base namespace update_client { class Unzipper { … }; class UnzipperFactory : public base::RefCountedThreadSafe<UnzipperFactory> { … }; } // namespace update_client #endif // COMPONENTS_UPDATE_CLIENT_UNZIPPER_H_