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

Unified Diff: components/devtools_bridge/android/java/src/org/chromium/components/devtools_bridge/gcd/InstanceCredential.java

Issue 677843006: Registration of DevTools bridge in GCD. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@gcm-signaling
Patch Set: Created 6 years, 2 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: components/devtools_bridge/android/java/src/org/chromium/components/devtools_bridge/gcd/InstanceCredential.java
diff --git a/components/devtools_bridge/android/java/src/org/chromium/components/devtools_bridge/gcd/InstanceCredential.java b/components/devtools_bridge/android/java/src/org/chromium/components/devtools_bridge/gcd/InstanceCredential.java
new file mode 100644
index 0000000000000000000000000000000000000000..8fd360a68d8a90eb736988c8c5b7d492cb49b94b
--- /dev/null
+++ b/components/devtools_bridge/android/java/src/org/chromium/components/devtools_bridge/gcd/InstanceCredential.java
@@ -0,0 +1,28 @@
+// 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.components.devtools_bridge.gcd;
+
+/**
+ * Information provided by GCD when instance has registered. Instance id
+ * can be used for:
+ * 1. Making sure incoming messages are addressed to the instance.
+ * 2. It needed when sending command results to GCD.
+ * 3. For device unregistration.
+ *
+ * The Secret supposed to be used to authenticate the instance with OAuthClient
+ * (it has no user credentials).
+ */
+public final class InstanceCredential {
+ public final String id;
+ public final String secret;
+
+ public InstanceCredential(String id, String secret) {
+ assert id != null;
+ assert secret != null;
+
+ this.id = id;
+ this.secret = secret;
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698