diff options
Diffstat (limited to 'components/gcm_driver/gcm_client.h')
-rw-r--r-- | components/gcm_driver/gcm_client.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/components/gcm_driver/gcm_client.h b/components/gcm_driver/gcm_client.h index 8a7f7b2..825c9fd 100644 --- a/components/gcm_driver/gcm_client.h +++ b/components/gcm_driver/gcm_client.h @@ -141,6 +141,13 @@ class GCMClient { RecordedActivities recorded_activities; }; + // Information about account. + struct AccountTokenInfo { + std::string account_id; + std::string email; + std::string access_token; + }; + // A delegate interface that allows the GCMClient instance to interact with // its caller, i.e. notifying asynchronous event. class Delegate { |