| Index: components/gcm_driver/instance_id/instance_id_driver.h
|
| diff --git a/components/gcm_driver/instance_id/instance_id_driver.h b/components/gcm_driver/instance_id/instance_id_driver.h
|
| index b7df4fce21e25d05f6cc6a730542793b81c8ec06..e006f0d38e215625188153941aec7be2c6511f4b 100644
|
| --- a/components/gcm_driver/instance_id/instance_id_driver.h
|
| +++ b/components/gcm_driver/instance_id/instance_id_driver.h
|
| @@ -42,7 +42,10 @@ class InstanceIDDriver {
|
| bool ExistsInstanceID(const std::string& app_id) const;
|
|
|
| private:
|
| - gcm::GCMDriver* gcm_driver_; // Not owned.
|
| + // Owned by GCMProfileServiceFactory, which is a dependency of
|
| + // InstanceIDProfileServiceFactory, which owns this.
|
| + gcm::GCMDriver* gcm_driver_;
|
| +
|
| std::map<std::string, scoped_ptr<InstanceID>> instance_id_map_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(InstanceIDDriver);
|
|
|