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

Unified Diff: content/public/browser/font_list_async.h

Issue 1874903002: Convert //content from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix indent 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 | « content/public/browser/download_url_parameters.cc ('k') | content/public/browser/geolocation_provider.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « content/public/browser/download_url_parameters.cc ('k') | content/public/browser/geolocation_provider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698