diff options
Diffstat (limited to 'components/gcm_driver/common/gcm_messages.h')
-rw-r--r-- | components/gcm_driver/common/gcm_messages.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/components/gcm_driver/common/gcm_messages.h b/components/gcm_driver/common/gcm_messages.h index 8d8c5b9..a6a071c 100644 --- a/components/gcm_driver/common/gcm_messages.h +++ b/components/gcm_driver/common/gcm_messages.h @@ -38,6 +38,10 @@ struct GCM_DRIVER_EXPORT IncomingMessage { std::string collapse_key; std::string sender_id; std::string raw_data; + + // Whether the contents of the message have been decrypted, and are + // available in |raw_data|. + bool decrypted; }; } // namespace gcm |