Index: content/public/browser/font_list_async.h |
diff --git a/content/public/browser/font_list_async.h b/content/public/browser/font_list_async.h |
index 07510db5e3aebffe198e4a071276ce344f3e4283..57a744284a617e5aff7ba9c5bc9e59de933e1a3b 100644 |
--- a/content/public/browser/font_list_async.h |
+++ b/content/public/browser/font_list_async.h |
@@ -5,8 +5,9 @@ |
#ifndef CONTENT_PUBLIC_BROWSER_FONT_LIST_ASYNC_H_ |
#define CONTENT_PUBLIC_BROWSER_FONT_LIST_ASYNC_H_ |
+#include <memory> |
+ |
#include "base/callback_forward.h" |
-#include "base/memory/scoped_ptr.h" |
#include "content/common/content_export.h" |
namespace base { |
@@ -23,7 +24,7 @@ namespace content { |
// any thread that has a BrowserThread::ID. The callback will be executed on |
// the calling thread. |
CONTENT_EXPORT void GetFontListAsync( |
- const base::Callback<void(scoped_ptr<base::ListValue>)>& callback); |
+ const base::Callback<void(std::unique_ptr<base::ListValue>)>& callback); |
} // namespace content |