Files
wuliubao c830a900c6 IssueNo:#I61MC8
Description:升级CEF 4844版本
Sig: SIG_ApplicationFramework
Feature or Bugfix: Feature
Binary Source: No

Signed-off-by: wuliubao <ahjxliubao@163.com>
2023-01-05 10:04:33 +08:00

25 lines
659 B
C++

// Copyright 2020 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.
#ifndef CEF_LIBCEF_COMMON_MAIN_RUNNER_HANDLER_H_
#define CEF_LIBCEF_COMMON_MAIN_RUNNER_HANDLER_H_
#pragma once
namespace content {
struct MainFunctionParams;
}
// Handles running of the main process.
class CefMainRunnerHandler {
public:
virtual void PreBrowserMain() = 0;
virtual int RunMainProcess(
content::MainFunctionParams main_function_params) = 0;
protected:
virtual ~CefMainRunnerHandler() {}
};
#endif // CEF_LIBCEF_COMMON_MAIN_RUNNER_HANDLER_H_