#include "extensions/common/features/feature_session_type.h"
#include "base/check_op.h"
namespace extensions {
namespace {
const mojom::FeatureSessionType kDefaultSessionType = …;
mojom::FeatureSessionType g_current_session_type = …;
}
mojom::FeatureSessionType GetCurrentFeatureSessionType() { … }
void SetCurrentFeatureSessionType(mojom::FeatureSessionType session_type) { … }
std::unique_ptr<base::AutoReset<mojom::FeatureSessionType>>
ScopedCurrentFeatureSessionType(mojom::FeatureSessionType type) { … }
}