| Index: chrome/browser/extensions/api/storage/sync_value_store_cache.h
|
| diff --git a/chrome/browser/extensions/api/storage/sync_value_store_cache.h b/chrome/browser/extensions/api/storage/sync_value_store_cache.h
|
| index 6de8c1d51de533d1373d8be8eb21a60f70830e43..ab0bbaad927386d3b1aa1c3c49e8b4484f3a43d5 100644
|
| --- a/chrome/browser/extensions/api/storage/sync_value_store_cache.h
|
| +++ b/chrome/browser/extensions/api/storage/sync_value_store_cache.h
|
| @@ -5,10 +5,11 @@
|
| #ifndef CHROME_BROWSER_EXTENSIONS_API_STORAGE_SYNC_VALUE_STORE_CACHE_H_
|
| #define CHROME_BROWSER_EXTENSIONS_API_STORAGE_SYNC_VALUE_STORE_CACHE_H_
|
|
|
| +#include <memory>
|
| +
|
| #include "base/compiler_specific.h"
|
| #include "base/macros.h"
|
| #include "base/memory/ref_counted.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "extensions/browser/api/storage/settings_observer.h"
|
| #include "extensions/browser/api/storage/value_store_cache.h"
|
| #include "sync/api/syncable_service.h"
|
| @@ -49,8 +50,8 @@ class SyncValueStoreCache : public ValueStoreCache {
|
| const base::FilePath& profile_path);
|
|
|
| bool initialized_;
|
| - scoped_ptr<SyncStorageBackend> app_backend_;
|
| - scoped_ptr<SyncStorageBackend> extension_backend_;
|
| + std::unique_ptr<SyncStorageBackend> app_backend_;
|
| + std::unique_ptr<SyncStorageBackend> extension_backend_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(SyncValueStoreCache);
|
| };
|
|
|