blob: e6ad30f2c44b67b18376bc01ef9d963171af944f [file] [log] [blame]
// Copyright 2016 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.
module mozart;
import "lib/ui/presentation/fidl/presentation.fidl";
import "lib/ui/views/fidl/view_token.fidl";
// The Presenter service provides a way for applications to ask that a
// specified view be added to a view tree, leaving any window management
// concerns up to the discretion of the presenter implementation.
[ServiceName="mozart::Presenter"]
interface Presenter {
Present(mozart.ViewOwner view_owner, mozart.Presentation&? presentation_request);
};