chromium/extensions/common/features/feature_session_type.cc

// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#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 =;

}  // namespace

mojom::FeatureSessionType GetCurrentFeatureSessionType() {}

void SetCurrentFeatureSessionType(mojom::FeatureSessionType session_type) {}

std::unique_ptr<base::AutoReset<mojom::FeatureSessionType>>
ScopedCurrentFeatureSessionType(mojom::FeatureSessionType type) {}

}  // namespace extensions