chromium/ash/public/cpp/notifier_settings_controller.cc

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

#include "ash/public/cpp/notifier_settings_controller.h"

#include "base/check_op.h"

namespace ash {

namespace {

NotifierSettingsController* g_instance = nullptr;

}  // namespace

// static
NotifierSettingsController* NotifierSettingsController::Get() {
  return g_instance;
}

NotifierSettingsController::NotifierSettingsController() {
  DCHECK_EQ(nullptr, g_instance);
  g_instance = this;
}

NotifierSettingsController::~NotifierSettingsController() {
  DCHECK_EQ(this, g_instance);
  g_instance = nullptr;
}

}  // namespace ash