| Index: services/catalog/types.h
|
| diff --git a/services/catalog/types.h b/services/catalog/types.h
|
| index 1c66890f75869c876de82461f8baecff5879a86a..00d3cc585869c7a14b078a520756a7ce69604aac 100644
|
| --- a/services/catalog/types.h
|
| +++ b/services/catalog/types.h
|
| @@ -6,16 +6,16 @@
|
| #define SERVICES_CATALOG_TYPES_H_
|
|
|
| #include <map>
|
| +#include <memory>
|
| #include <string>
|
|
|
| -#include "base/memory/scoped_ptr.h"
|
|
|
| namespace catalog {
|
|
|
| class Entry;
|
|
|
| // A map of mojo names -> catalog |Entry|s.
|
| -using EntryCache = std::map<std::string, scoped_ptr<Entry>>;
|
| +using EntryCache = std::map<std::string, std::unique_ptr<Entry>>;
|
|
|
| } // namespace catalog
|
|
|
|
|