blob: f8cf2dc7e16ac57162a4b61bb02db319f642bacc [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.textinputmod;
[Discoverable]
interface TextInputModReceiver {
1: UserEnteredText(string text) -> ();
2: UserCanceled() -> ();
};
[Discoverable]
interface TextInputMod {
1: ListenForTextInput(TextInputModReceiver receiver) -> ();
};