summaryrefslogtreecommitdiff
path: root/libcef/common/main_runner_handler.h
blob: 1314c72e5d41ddc73afeb049df7172fa534d915f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// 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_