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

Side by Side 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_PUBLIC_BROWSER_FONT_LIST_ASYNC_H_ 5 #ifndef CONTENT_PUBLIC_BROWSER_FONT_LIST_ASYNC_H_
6 #define CONTENT_PUBLIC_BROWSER_FONT_LIST_ASYNC_H_ 6 #define CONTENT_PUBLIC_BROWSER_FONT_LIST_ASYNC_H_
7 7
8 #include <memory>
9
8 #include "base/callback_forward.h" 10 #include "base/callback_forward.h"
9 #include "base/memory/scoped_ptr.h"
10 #include "content/common/content_export.h" 11 #include "content/common/content_export.h"
11 12
12 namespace base { 13 namespace base {
13 class ListValue; 14 class ListValue;
14 } 15 }
15 16
16 namespace content { 17 namespace content {
17 18
18 // Retrieves the list of fonts on the system as a list of strings. It provides 19 // Retrieves the list of fonts on the system as a list of strings. It provides
19 // a non-blocking interface to GetFontList_SlowBlocking in common/. 20 // a non-blocking interface to GetFontList_SlowBlocking in common/.
20 // 21 //
21 // This function will run asynchronously on a background thread since getting 22 // This function will run asynchronously on a background thread since getting
22 // the font list from the system can be slow. This function may be called from 23 // the font list from the system can be slow. This function may be called from
23 // any thread that has a BrowserThread::ID. The callback will be executed on 24 // any thread that has a BrowserThread::ID. The callback will be executed on
24 // the calling thread. 25 // the calling thread.
25 CONTENT_EXPORT void GetFontListAsync( 26 CONTENT_EXPORT void GetFontListAsync(
26 const base::Callback<void(scoped_ptr<base::ListValue>)>& callback); 27 const base::Callback<void(std::unique_ptr<base::ListValue>)>& callback);
27 28
28 } // namespace content 29 } // namespace content
29 30
30 #endif // CONTENT_PUBLIC_BROWSER_FONT_LIST_ASYNC_H_ 31 #endif // CONTENT_PUBLIC_BROWSER_FONT_LIST_ASYNC_H_
OLDNEW
« 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