blob: 64363654f8657524d57fa7530dbaae933946c2f9 [file] [log] [blame]
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package org.chromium.chromoting;
/** The parameter for an InputModeChanged event. */
public final class InputModeChangedEventParameter {
public final @Desktop.InputMode int inputMode;
public final @CapabilityManager.HostCapability int hostCapability;
public InputModeChangedEventParameter(@Desktop.InputMode int inputMode,
@CapabilityManager.HostCapability int hostCapability) {
this.inputMode = inputMode;
this.hostCapability = hostCapability;
}
}