blob: 22da7db87ef7fc1504971a3037dac68cec90eac9 [file] [log] [blame] [edit]
// Copyright 2023 The ChromiumOS Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// API exposed by printscanmgr's root-level executor. The only client is the
// sandboxed printscanmgr daemon when it needs to perform a high-privilege
// operation.
module printscanmgr.mojom;
// Enumeration of the upstart jobs that the executor can control.
enum UpstartJob {
kCupsd = 0,
};
interface Executor {
// Requests that the init daemon restart `job`. If `success` is false, then
// `errorMsg` contains details about the failure. Note that if `job` is not
// running, this method will report success and leave `job` in its previous
// state.
RestartUpstartJob(UpstartJob job) => (bool success, string errorMsg);
// Requests that the executor read the file named `fileName` from the known
// PPD directory. `fileContents` is the unparsed contents of the file read,
// and `success` will be false if an error occurred reading the file.
GetPpdFile(string fileName) => (string fileContents, bool success);
};