chromium/extensions/common/features/feature_channel.cc

// Copyright 2013 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_channel.h"

#include <ostream>

#include "base/check_op.h"
#include "components/version_info/version_info.h"

namespace {

// The current channel to be reported, unless overridden by
// |ScopedCurrentChannel|.
version_info::Channel g_current_channel =;

// The current channel overridden by |ScopedCurrentChannel|. The value is valid
// only whenever |g_override_count| is non-zero.
version_info::Channel g_overridden_channel =;

// The number of currently existing instances of |ScopedCurrentChannel|.
int g_override_count =;

}  // namespace

namespace extensions {

version_info::Channel GetCurrentChannel() {}

void SetCurrentChannel(version_info::Channel channel) {}

ScopedCurrentChannel::ScopedCurrentChannel(version_info::Channel channel)
    :{}

ScopedCurrentChannel::~ScopedCurrentChannel() {}

}  // namespace extensions