blob: 8778ddd56342fcf3a47d5b879a4d28a284559af2 [file] [log] [blame]
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ash/public/cpp/toast_manager.h"
#include "base/logging.h"
namespace ash {
namespace {
ToastManager* g_instance = nullptr;
} // namespace
// static
ToastManager* ToastManager::Get() {
return g_instance;
}
ToastManager::ToastManager() {
DCHECK(!g_instance);
g_instance = this;
}
ToastManager::~ToastManager() {
DCHECK_EQ(this, g_instance);
g_instance = nullptr;
}
} // namespace ash