| Index: chrome/browser/sync/test/integration/apps_helper.h
|
| diff --git a/chrome/browser/sync/test/integration/apps_helper.h b/chrome/browser/sync/test/integration/apps_helper.h
|
| index 0ca4e1f576ce9bb8a9032dd6159012392d7125ad..5c0d655f91c6c7c5bb4ac8a5e4f53712183f5842 100644
|
| --- a/chrome/browser/sync/test/integration/apps_helper.h
|
| +++ b/chrome/browser/sync/test/integration/apps_helper.h
|
| @@ -5,6 +5,7 @@
|
| #ifndef CHROME_BROWSER_SYNC_TEST_INTEGRATION_APPS_HELPER_H_
|
| #define CHROME_BROWSER_SYNC_TEST_INTEGRATION_APPS_HELPER_H_
|
|
|
| +#include <memory>
|
| #include <string>
|
| #include <vector>
|
|
|
| @@ -153,7 +154,8 @@ class AppsMatchChecker : public StatusChangeChecker,
|
| content::NotificationRegistrar registrar_;
|
|
|
| // This installs apps, too.
|
| - ScopedVector<SyncedExtensionInstaller> synced_extension_installers_;
|
| + std::vector<std::unique_ptr<SyncedExtensionInstaller>>
|
| + synced_extension_installers_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(AppsMatchChecker);
|
| };
|
|
|