Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(155)

Unified Diff: services/catalog/store.h

Issue 1910673002: Convert //services from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « services/catalog/reader.cc ('k') | services/catalog/types.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « services/catalog/reader.cc ('k') | services/catalog/types.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698