Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1305)

Unified Diff: remoting/android/java/src/org/chromium/chromoting/Capabilities.java

Issue 451973002: Capabilities + Extensions + Cast Host Extension Support for Android client (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: remoting/android/java/src/org/chromium/chromoting/Capabilities.java
diff --git a/remoting/android/java/src/org/chromium/chromoting/Capabilities.java b/remoting/android/java/src/org/chromium/chromoting/Capabilities.java
new file mode 100644
index 0000000000000000000000000000000000000000..c32c5ceb586c83296cf85fc3d41e3747e31294f7
--- /dev/null
+++ b/remoting/android/java/src/org/chromium/chromoting/Capabilities.java
@@ -0,0 +1,14 @@
+// Copyright 2013 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.
+ */
+public class Capabilities {
+ public static final String CAST_CAPABILITY = "casting";
+}

Powered by Google App Engine
This is Rietveld 408576698