blob: 0263dd24693029e7c563cf788e7236c91c4cad3d [file] [log] [blame]
// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/extensions/api/messaging/native_process_launcher.h"
#include "base/notreached.h"
namespace extensions {
// static
base::FilePath NativeProcessLauncher::FindManifest(const std::string& host_name,
bool allow_user_level_hosts,
std::string* error_message) {
*error_message = "Not implemented";
return base::FilePath();
}
// static
bool NativeProcessLauncher::LaunchNativeProcess(
const base::CommandLine& command_line,
base::Process* process,
base::File* read_file,
base::File* write_file) {
NOTIMPLEMENTED_LOG_ONCE();
return false;
}
} // namespace extensions