blob: 11c455c69aabe94f1f566e7cb8e21bd4cec95982 [file] [log] [blame]
// Copyright (c) 2015 The Chromium Embedded Framework 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 "tests/cefclient/browser/main_context.h"
#include "include/base/cef_logging.h"
namespace client {
namespace {
MainContext* g_main_context = nullptr;
} // namespace
// static
MainContext* MainContext::Get() {
DCHECK(g_main_context);
return g_main_context;
}
MainContext::MainContext() {
DCHECK(!g_main_context);
g_main_context = this;
}
MainContext::~MainContext() {
g_main_context = nullptr;
}
} // namespace client