sadrul | c81aade5 | 2015-06-09 00:12:43 | [diff] [blame] | 1 | // Copyright 2015 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 "ui/gfx/font_fallback.h" |
| 6 | |
| 7 | #include <string> |
| 8 | #include <vector> |
| 9 | |
| 10 | namespace gfx { |
| 11 | |
erikchen | 98ef615 | 2015-12-09 00:27:22 | [diff] [blame] | 12 | std::vector<Font> GetFallbackFonts(const Font& font) { |
| 13 | return std::vector<Font>(); |
sadrul | c81aade5 | 2015-06-09 00:12:43 | [diff] [blame] | 14 | } |
| 15 | |
| 16 | } // namespace gfx |