| Index: chrome/browser/extensions/updater/local_extension_cache.h
|
| diff --git a/chrome/browser/extensions/updater/local_extension_cache.h b/chrome/browser/extensions/updater/local_extension_cache.h
|
| index 0bd50ef438aecec41932e47779253ce1c58f9096..acf4e283fb20a5c97e9fb50299194ed94a5670d6 100644
|
| --- a/chrome/browser/extensions/updater/local_extension_cache.h
|
| +++ b/chrome/browser/extensions/updater/local_extension_cache.h
|
| @@ -9,12 +9,12 @@
|
| #include <stdint.h>
|
|
|
| #include <map>
|
| +#include <memory>
|
| #include <string>
|
|
|
| #include "base/callback_forward.h"
|
| #include "base/files/file_path.h"
|
| #include "base/macros.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "base/memory/weak_ptr.h"
|
| #include "base/time/time.h"
|
|
|
| @@ -208,7 +208,7 @@ class LocalExtensionCache {
|
|
|
| // Invoked when the cache content on disk has been checked. |cache_content|
|
| // contains all the currently valid crx files in the cache.
|
| - void OnCacheContentsChecked(scoped_ptr<CacheMap> cache_content,
|
| + void OnCacheContentsChecked(std::unique_ptr<CacheMap> cache_content,
|
| const base::Closure& callback);
|
|
|
| // Update timestamp for the file to mark it as "used". This method is invoked
|
|
|