blob: aaa8a47e06ed6d5e0d1645e2c62d622e57b68d14 [file] [log] [blame]
// Copyright 2018 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
library fuchsia.modular.internal;
// A debug interface exposed by `basemgr` to allow developer tools to control
// state within the `basemgr` process.
[Discoverable]
interface BasemgrDebug {
// Restarts the current session. If a user was logged in, this will return
// when the same user is logged back in. Otherwise, this will return when
// sessionmgr has been torn down.
RestartSession() -> ();
// Logs in as a guest user.
LoginAsGuest();
};