#ifndef EXTENSIONS_BROWSER_UPDATER_SCOPED_EXTENSION_UPDATER_KEEP_ALIVE_H_
#define EXTENSIONS_BROWSER_UPDATER_SCOPED_EXTENSION_UPDATER_KEEP_ALIVE_H_
namespace extensions {
class ScopedExtensionUpdaterKeepAlive {
public:
ScopedExtensionUpdaterKeepAlive() = default;
virtual ~ScopedExtensionUpdaterKeepAlive() = 0;
ScopedExtensionUpdaterKeepAlive(
const ScopedExtensionUpdaterKeepAlive& other) = delete;
ScopedExtensionUpdaterKeepAlive& operator=(
const ScopedExtensionUpdaterKeepAlive& other) = delete;
};
}
#endif