// 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_PATCHER_H_ #define COMPONENTS_UPDATE_CLIENT_PATCHER_H_ #include "base/functional/callback_forward.h" #include "base/memory/ref_counted.h" namespace base { class File; } // namespace base namespace update_client { class Patcher : public base::RefCountedThreadSafe<Patcher> { … }; class PatcherFactory : public base::RefCountedThreadSafe<PatcherFactory> { … }; } // namespace update_client #endif // COMPONENTS_UPDATE_CLIENT_PATCHER_H_