| Index: chrome/browser/apps/drive/drive_app_provider.h
|
| diff --git a/chrome/browser/apps/drive/drive_app_provider.h b/chrome/browser/apps/drive/drive_app_provider.h
|
| index f9d9cf875b0b197875887905e11cd84e16b5517e..75e01f1f88a8aad527396d58c88c5c772bef2806 100644
|
| --- a/chrome/browser/apps/drive/drive_app_provider.h
|
| +++ b/chrome/browser/apps/drive/drive_app_provider.h
|
| @@ -11,7 +11,6 @@
|
| #include <vector>
|
|
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_vector.h"
|
| #include "base/memory/weak_ptr.h"
|
| #include "components/drive/drive_app_registry_observer.h"
|
| #include "extensions/browser/extension_registry_observer.h"
|
| @@ -99,7 +98,7 @@ class DriveAppProvider : public drive::DriveAppRegistryObserver,
|
| bool drive_app_registry_updated_;
|
|
|
| // Tracks the pending web app convertions.
|
| - ScopedVector<DriveAppConverter> pending_converters_;
|
| + std::vector<std::unique_ptr<DriveAppConverter>> pending_converters_;
|
|
|
| base::WeakPtrFactory<DriveAppProvider> weak_ptr_factory_;
|
|
|
|
|