使CEF使用单独的可执行文件来启动子进程(C ++ / Windows)

时间:2016-12-19 13:33:09

标签: c++ windows process chromium-embedded

我正在尝试修改" cefsimple"来自Chromium Embedded Framework(https://bitbucket.org/chromiumembedded/cef/wiki/Tutorial)的示例,因此它使用单独的可执行文件以在Windows上启动其子进程。

但是,这没有按预期工作,并且在弹出任何窗口或启动任何子进程之前,每次在主进程中调用 CefInitialize 时都会崩溃。调用堆栈:

    chrome_elf.dll!00007ffaa7fc1cfd()   
    chrome_elf.dll!00007ffaa7fba5fc()   
    chrome_elf.dll!00007ffaa7fb9c9b()   
    libcef.dll!00007ffa88dae13c()   
    libcef.dll!00007ffa882fc146()   
>   cefsimple.exe!CefInitialize(const CefMainArgs & args, const CefStructBase<CefSettingsTraits> & settings, CefRefPtr<CefApp> * application, void * windows_sandbox_info)  Line 201 + 0xb4 bytes   C++

使用:CEF版本3.2883.1539,64位,C ++,VS 2015,Windows 10。

我的解决方案: 我在CMakeLists中添加了另一个目标(cefsimpleHelper.exe),并使用这些指令作为修改源代码的参考: https://bitbucket.org/chromiumembedded/cef/wiki/GeneralUsage#markdown-header-separate-sub-process-executable

cefsimple_win.cc: (主要可执行文件的入口点)

int APIENTRY wWinMain(HINSTANCE hInstance,
                      HINSTANCE hPrevInstance,
                      LPTSTR    lpCmdLine,
                      int       nCmdShow)
{
  UNREFERENCED_PARAMETER(hPrevInstance);
  UNREFERENCED_PARAMETER(lpCmdLine);

  CefEnableHighDPISupport();
  CefMainArgs main_args(hInstance);

  CefSettings settings;
  settings.no_sandbox = true;
  CefString(&settings.browser_subprocess_path).FromASCII("cefsimpleHelper.exe");

  CefRefPtr<SimpleApp> app(new SimpleApp);

  CefInitialize(main_args, settings, app.get(), NULL);
  CefRunMessageLoop();
  CefShutdown();

  return 0;
}

process_helper_win.cc: (子流程启动器的入口点)

int APIENTRY wWinMain(HINSTANCE hInstance,
    HINSTANCE hPrevInstance,
    LPTSTR    lpCmdLine,
    int       nCmdShow)
{
    UNREFERENCED_PARAMETER(hPrevInstance);
    UNREFERENCED_PARAMETER(lpCmdLine);

    CefMainArgs main_args(hInstance);
    CefRefPtr<SimpleApp> app(new SimpleApp);
    return CefExecuteProcess(main_args, app.get(), nullptr);
}

任何想法可能是什么问题?

1 个答案:

答案 0 :(得分:1)

我认为我找到了解决方案,主要是随机试错:P

CefInitialize 之前,我刚刚在主要可执行文件中添加了对 CefExecuteProcess 的调用:

const auto exit_code = CefExecuteProcess(main_args, app.get(), nullptr);
if (exit_code >= 0)
    return exit_code;

感谢所有评论,我希望这也会对其他人有所帮助。