2012-06-26 18:47:05 +02:00
|
|
|
// Copyright (c) 2012 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 "include/cef_process_util.h"
|
|
|
|
#include "libcef/common/command_line_impl.h"
|
|
|
|
|
|
|
|
#include "base/logging.h"
|
2020-07-08 19:23:29 +02:00
|
|
|
#include "base/notreached.h"
|
2013-08-15 21:38:55 +02:00
|
|
|
#include "base/process/launch.h"
|
2018-04-19 17:44:42 +02:00
|
|
|
#include "content/public/browser/child_process_launcher_utils.h"
|
2012-06-26 18:47:05 +02:00
|
|
|
|
|
|
|
bool CefLaunchProcess(CefRefPtr<CefCommandLine> command_line) {
|
|
|
|
if (!command_line.get()) {
|
2023-05-08 17:07:57 +02:00
|
|
|
DCHECK(false) << "invalid parameter";
|
2012-06-26 18:47:05 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-04-19 17:44:42 +02:00
|
|
|
if (!content::CurrentlyOnProcessLauncherTaskRunner()) {
|
2023-05-08 17:07:57 +02:00
|
|
|
DCHECK(false) << "called on invalid thread";
|
2012-06-26 18:47:05 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
CefCommandLineImpl* impl =
|
|
|
|
static_cast<CefCommandLineImpl*>(command_line.get());
|
|
|
|
|
|
|
|
CefValueController::AutoLock lock_scope(impl->controller());
|
|
|
|
|
|
|
|
base::LaunchOptions options;
|
2015-02-04 19:10:14 +01:00
|
|
|
return base::LaunchProcess(impl->command_line(), options).IsValid();
|
2012-06-26 18:47:05 +02:00
|
|
|
}
|