Index: remoting/host/signaling_connector.h |
diff --git a/remoting/host/signaling_connector.h b/remoting/host/signaling_connector.h |
index 227bf71fc32c67a25fb469351d1dc6622354cbd5..77ffcb4e2e921c0ca041e1694c5afecdabf4cfe4 100644 |
--- a/remoting/host/signaling_connector.h |
+++ b/remoting/host/signaling_connector.h |
@@ -33,9 +33,11 @@ class SignalingConnector |
public: |
struct OAuthCredentials { |
OAuthCredentials(const std::string& login_value, |
- const std::string& refresh_token_value); |
+ const std::string& refresh_token_value, |
+ const OAuthClientInfo& client_info); |
std::string login; |
std::string refresh_token; |
+ OAuthClientInfo client_info; |
Wez
2012/04/19 00:13:04
I realise it's not your fault this structure has n
Alpha Left Google
2012/04/20 22:13:50
I'll add comments, please see if they match. *I th
|
}; |
// OAuth token is updated refreshed when |oauth_credentials| is |