#include "services/network/throttling/scoped_throttling_token.h"
#include "base/logging.h"
#include "base/memory/ptr_util.h"
#include "base/unguessable_token.h"
#include "services/network/throttling/throttling_controller.h"
namespace network {
std::unique_ptr<ScopedThrottlingToken> ScopedThrottlingToken::MaybeCreate(
uint32_t net_log_source_id,
const std::optional<base::UnguessableToken>& throttling_profile_id) { … }
ScopedThrottlingToken::ScopedThrottlingToken(
uint32_t net_log_source_id,
const base::UnguessableToken& throttling_profile_id)
: … { … }
ScopedThrottlingToken::~ScopedThrottlingToken() { … }
}