blob: 68d8f672fbe2c2228ec932133f0b4a9c73f0d1dc [file] [log] [blame]
// Copyright 2020 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.
#import "remoting/ios/app/account_manager.h"
#include "base/check.h"
#if !defined(__has_feature) || !__has_feature(objc_arc)
#error "This file requires ARC support."
#endif
namespace remoting {
namespace ios {
namespace {
// Leaky.
static AccountManager* g_account_manager = nullptr;
} // namespace
AccountManager::AccountManager() = default;
AccountManager::~AccountManager() = default;
// static
void AccountManager::SetInstance(
std::unique_ptr<AccountManager> account_manager) {
DCHECK(!g_account_manager);
g_account_manager = account_manager.release();
}
// static
AccountManager* AccountManager::GetInstance() {
DCHECK(g_account_manager);
return g_account_manager;
}
} // namespace ios
} // namespace remoting