Index: chrome/service/service_process_prefs.h |
diff --git a/chrome/service/service_process_prefs.h b/chrome/service/service_process_prefs.h |
index cae0542b8b12609210d8acacd5923bcfdd2e0333..21ef0a9cba19d5df8619b043000d69964b7e3109 100644 |
--- a/chrome/service/service_process_prefs.h |
+++ b/chrome/service/service_process_prefs.h |
@@ -5,6 +5,7 @@ |
#ifndef CHROME_SERVICE_SERVICE_PROCESS_PREFS_H_ |
#define CHROME_SERVICE_SERVICE_PROCESS_PREFS_H_ |
+#include <memory> |
#include <string> |
#include "base/macros.h" |
@@ -57,7 +58,7 @@ class ServiceProcessPrefs { |
const base::ListValue* GetList(const std::string& key) const; |
// Set a |value| for |key|. |
- void SetValue(const std::string& key, scoped_ptr<base::Value> value); |
+ void SetValue(const std::string& key, std::unique_ptr<base::Value> value); |
// Removes the pref specified by |key|. |
void RemovePref(const std::string& key); |