HumanRender/human_render/CEF/MainMessageLoop.cpp

35 lines
882 B
C++
Raw Permalink Normal View History

2024-12-19 17:46:41 +00:00
// 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 "CEF/MainMessageLoop.h"
#include "include/cef_task.h"
#include "include/wrapper/cef_closure_task.h"
MainMessageLoop* g_main_message_loop = nullptr;
MainMessageLoop::MainMessageLoop() {
DCHECK(!g_main_message_loop);
g_main_message_loop = this;
}
MainMessageLoop::~MainMessageLoop() {
g_main_message_loop = nullptr;
}
// static
MainMessageLoop* MainMessageLoop::Get() {
DCHECK(g_main_message_loop);
return g_main_message_loop;
}
void MainMessageLoop::PostClosure(base::OnceClosure closure) {
PostTask(CefCreateClosureTask(std::move(closure)));
}
void MainMessageLoop::PostClosure(const base::RepeatingClosure& closure) {
PostTask(CefCreateClosureTask(closure));
}