blob: e81ba799be667fda21055f5e5a4920f0a553e9b4 [file] [log] [blame]
// Copyright 2019 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.wayland;
using fuchsia.ui.app;
@discoverable
protocol ViewProducer {
-> OnNewView(resource struct {
view_provider client_end:fuchsia.ui.app.ViewProvider;
id uint32;
});
-> OnShutdownView(struct {
id uint32;
});
};