| Index: chrome/browser/extensions/app_notification_manager.h
|
| diff --git a/chrome/browser/extensions/app_notification_manager.h b/chrome/browser/extensions/app_notification_manager.h
|
| index 166298b67e918b491f340e3a7a7f09c704feb3aa..fae3b9e7a78697f1afee9554a3da2ec74f0d0c3f 100644
|
| --- a/chrome/browser/extensions/app_notification_manager.h
|
| +++ b/chrome/browser/extensions/app_notification_manager.h
|
| @@ -73,7 +73,7 @@ class AppNotificationManager
|
| virtual SyncError MergeDataAndStartSyncing(
|
| syncable::ModelType type,
|
| const SyncDataList& initial_sync_data,
|
| - SyncChangeProcessor* sync_processor) OVERRIDE;
|
| + scoped_ptr<SyncChangeProcessor> sync_processor) OVERRIDE;
|
| virtual void StopSyncing(syncable::ModelType type) OVERRIDE;
|
|
|
| private:
|
| @@ -155,7 +155,7 @@ class AppNotificationManager
|
| scoped_ptr<AppNotificationStorage> storage_;
|
|
|
| // Sync change processor we use to push all our changes.
|
| - SyncChangeProcessor* sync_processor_;
|
| + scoped_ptr<SyncChangeProcessor> sync_processor_;
|
| // Whether the sync model is associated with the local model.
|
| // In other words, whether we are ready to apply sync changes.
|
| bool models_associated_;
|
|
|