1// Copyright 2014 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
5package org.chromium.chromoting;
6
7/**
8 * The list of all capabilities that might be supported by the Chromoting host
9 * and client. As more capabilities are supported on the android client,
10 * they can be enumerated here. This list must be kept synced with the
11 * Chromoting host.
12 */
13public class Capabilities {
14    public static final String CAST_CAPABILITY = "casting";
15}
16