summaryrefslogtreecommitdiffstats
path: root/remoting/android/java/src/org/chromium/chromoting/Capabilities.java
blob: 294a242d9b7bb6573b35e7635476c61e09732184 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright 2014 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 list of all capabilities that might be supported by the Chromoting host
 * and client. As more capabilities are supported on the android client,
 * they can be enumerated here. This list must be kept synced with the
 * Chromoting host.
 */
public class Capabilities {
    public static final String CAST_CAPABILITY = "casting";
    public static final String TOUCH_CAPABILITY = "touchEvents";
}