| Index: services/catalog/store.h
|
| diff --git a/services/catalog/store.h b/services/catalog/store.h
|
| index a57e154dc749b35c1e9153a7cfc5901f8a80f6ef..5fe92c08513082d22b1a456e3351e851c1f679e7 100644
|
| --- a/services/catalog/store.h
|
| +++ b/services/catalog/store.h
|
| @@ -5,7 +5,8 @@
|
| #ifndef SERVICES_CATALOG_STORE_H_
|
| #define SERVICES_CATALOG_STORE_H_
|
|
|
| -#include "base/memory/scoped_ptr.h"
|
| +#include <memory>
|
| +
|
| #include "base/values.h"
|
|
|
| namespace catalog {
|
| @@ -46,7 +47,7 @@ class Store {
|
|
|
| // Write the catalog to the store. Called when the Catalog learns of a newly
|
| // encountered application.
|
| - virtual void UpdateStore(scoped_ptr<base::ListValue> store) = 0;
|
| + virtual void UpdateStore(std::unique_ptr<base::ListValue> store) = 0;
|
| };
|
|
|
| } // namespace catalog
|
|
|