#ifndef CHROME_UPDATER_EXTERNAL_CONSTANTS_H_
#define CHROME_UPDATER_EXTERNAL_CONSTANTS_H_
#include <optional>
#include <vector>
#include "base/memory/ref_counted.h"
#include "base/memory/scoped_refptr.h"
#include "base/time/time.h"
#include "base/values.h"
class GURL;
namespace base {
class TimeDelta;
}
namespace crx_file {
enum class VerifierFormat;
}
namespace updater {
class ExternalConstants : public base::RefCountedThreadSafe<ExternalConstants> { … };
scoped_refptr<ExternalConstants> CreateExternalConstants();
}
#endif