[email protected] | e3d19377 | 2013-09-11 15:18:26 | [diff] [blame] | 1 | // Copyright 2013 The Chromium Authors. All rights reserved. |
2 | // Use of this source code is governed by a BSD-style license that can be | ||||
3 | // found in the LICENSE file. | ||||
4 | |||||
5 | #include "content/common/font_list.h" | ||||
6 | |||||
Peter Boström | 08e7ed8 | 2021-04-19 17:49:59 | [diff] [blame] | 7 | #include <memory> |
8 | |||||
[email protected] | e3d19377 | 2013-09-11 15:18:26 | [diff] [blame] | 9 | #include "base/values.h" |
10 | |||||
11 | namespace content { | ||||
12 | |||||
dcheng | 4ac58c7a | 2016-04-09 04:51:48 | [diff] [blame] | 13 | std::unique_ptr<base::ListValue> GetFontList_SlowBlocking() { |
Peter Boström | 08e7ed8 | 2021-04-19 17:49:59 | [diff] [blame] | 14 | return std::make_unique<base::ListValue>(); |
[email protected] | e3d19377 | 2013-09-11 15:18:26 | [diff] [blame] | 15 | } |
16 | |||||
17 | } // namespace content |