Index: remoting/webapp/client_plugin.js |
diff --git a/remoting/webapp/client_plugin.js b/remoting/webapp/client_plugin.js |
index 896d0392e88ce08fac6b646db739a9d8b14d113b..25ae82af4f57e624889186e7f507d91f2551b56f 100644 |
--- a/remoting/webapp/client_plugin.js |
+++ b/remoting/webapp/client_plugin.js |
@@ -187,3 +187,12 @@ remoting.ClientPlugin.prototype.onPinFetched = function(pin) {}; |
* Tells the plugin to ask for the PIN asynchronously. |
*/ |
remoting.ClientPlugin.prototype.useAsyncPinDialog = function() {}; |
+ |
+/** |
+ * Sets the third party authentication token and shared secret. |
+ * |
+ * @param {string} token The token received from the token URL. |
+ * @param {string} sharedSecret Shared secret received from the token URL. |
+ */ |
+remoting.ClientPlugin.prototype.onThirdPartyTokenFetched = |
+ function(token, sharedSecret) {}; |