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

Unified Diff: remoting/host/signaling_connector.h

Issue 10116040: Remoting daemon process to support unofficial client ID (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 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/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

Powered by Google App Engine
This is Rietveld 408576698