OLD | NEW |
(Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 package org.chromium.chromoting; |
| 6 |
| 7 /** The parameter for an InputModeChanged event. */ |
| 8 public final class InputModeChangedEventParameter { |
| 9 public final Desktop.InputMode inputMode; |
| 10 public final CapabilityManager.HostCapability hostCapability; |
| 11 |
| 12 public InputModeChangedEventParameter(Desktop.InputMode inputMode, |
| 13 CapabilityManager.HostCapability hostC
apability) { |
| 14 this.inputMode = inputMode; |
| 15 this.hostCapability = hostCapability; |
| 16 } |
| 17 } |
OLD | NEW |