OLD | NEW |
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_COMMON_FONT_LIST_H_ | 5 #ifndef CONTENT_COMMON_FONT_LIST_H_ |
6 #define CONTENT_COMMON_FONT_LIST_H_ | 6 #define CONTENT_COMMON_FONT_LIST_H_ |
7 | 7 |
| 8 #include "base/memory/scoped_ptr.h" |
| 9 |
8 namespace base { | 10 namespace base { |
9 class ListValue; | 11 class ListValue; |
10 } | 12 } |
11 | 13 |
12 namespace content { | 14 namespace content { |
13 | 15 |
14 // Retrieves the fonts available on the current platform and returns them. | 16 // Retrieves the fonts available on the current platform and returns them. |
15 // The caller will own the returned pointer. Each entry will be a list of | 17 // The caller will own the returned pointer. Each entry will be a list of |
16 // two strings, the first being the font family, and the second being the | 18 // two strings, the first being the font family, and the second being the |
17 // localized name. | 19 // localized name. |
18 // | 20 // |
19 // This function is potentially slow (the system may do a bunch of I/O) so be | 21 // This function is potentially slow (the system may do a bunch of I/O) so be |
20 // sure not to call this on a time-critical thread like the UI or I/O threads. | 22 // sure not to call this on a time-critical thread like the UI or I/O threads. |
21 // | 23 // |
22 // Most callers will want to use the GetFontListAsync function in | 24 // Most callers will want to use the GetFontListAsync function in |
23 // content/browser/font_list_async.h which does an asynchronous call. | 25 // content/browser/font_list_async.h which does an asynchronous call. |
24 base::ListValue* GetFontList_SlowBlocking(); | 26 scoped_ptr<base::ListValue> GetFontList_SlowBlocking(); |
25 | 27 |
26 } // namespace content | 28 } // namespace content |
27 | 29 |
28 #endif // CONTENT_COMMON_FONT_LIST_H_ | 30 #endif // CONTENT_COMMON_FONT_LIST_H_ |
OLD | NEW |