#ifndef COMPONENTS_OPTIMIZATION_GUIDE_CORE_ACCESS_TOKEN_HELPER_H_
#define COMPONENTS_OPTIMIZATION_GUIDE_CORE_ACCESS_TOKEN_HELPER_H_
#include <set>
#include <string>
#include "base/containers/flat_set.h"
#include "base/functional/callback_forward.h"
namespace signin {
class IdentityManager;
}
namespace optimization_guide {
AccessTokenReceivedCallback;
void RequestAccessToken(signin::IdentityManager* identity_manager,
const std::set<std::string>& oauth_scopes,
AccessTokenReceivedCallback callback);
}
#endif