| Index: components/gcm_driver/gcm_activity.h
|
| diff --git a/components/gcm_driver/gcm_activity.h b/components/gcm_driver/gcm_activity.h
|
| index 0d3da0c5fd94fedf2931049bb0136f740cc5da8d..2209cb0b414055010d5ca6df2a5feda82caea5d7 100644
|
| --- a/components/gcm_driver/gcm_activity.h
|
| +++ b/components/gcm_driver/gcm_activity.h
|
| @@ -25,19 +25,19 @@ struct Activity {
|
| // Contains relevant data of a connection activity.
|
| struct ConnectionActivity : Activity {
|
| ConnectionActivity();
|
| - virtual ~ConnectionActivity();
|
| + ~ConnectionActivity() override;
|
| };
|
|
|
| // Contains relevant data of a check-in activity.
|
| struct CheckinActivity : Activity {
|
| CheckinActivity();
|
| - virtual ~CheckinActivity();
|
| + ~CheckinActivity() override;
|
| };
|
|
|
| // Contains relevant data of a registration/unregistration step.
|
| struct RegistrationActivity : Activity {
|
| RegistrationActivity();
|
| - virtual ~RegistrationActivity();
|
| + ~RegistrationActivity() override;
|
|
|
| std::string app_id;
|
| std::string sender_ids; // Comma separated sender ids.
|
| @@ -46,7 +46,7 @@ struct RegistrationActivity : Activity {
|
| // Contains relevant data of a message receiving event.
|
| struct ReceivingActivity : Activity {
|
| ReceivingActivity();
|
| - virtual ~ReceivingActivity();
|
| + ~ReceivingActivity() override;
|
|
|
| std::string app_id;
|
| std::string from;
|
| @@ -56,7 +56,7 @@ struct ReceivingActivity : Activity {
|
| // Contains relevant data of a send-message step.
|
| struct SendingActivity : Activity {
|
| SendingActivity();
|
| - virtual ~SendingActivity();
|
| + ~SendingActivity() override;
|
|
|
| std::string app_id;
|
| std::string receiver_id;
|
|
|