Bug 1874684 - Part 28: Return DateDuration from DifferenceISODateTime. r=mgaudet
[gecko.git] / gfx / thebes / IOSPlatformFontList.mm
blobe42d209fa376f5fe2a4433ff871b936a033f9579
1 /* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 2 -*-
2  * This Source Code Form is subject to the terms of the Mozilla Public
3  * License, v. 2.0. If a copy of the MPL was not distributed with this
4  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 #import <UIKit/UIKit.h>
7 #include "IOSPlatformFontList.h"
9 IOSPlatformFontList::IOSPlatformFontList() : CoreTextFontList() {}
11 IOSPlatformFontList::~IOSPlatformFontList() {}
13 void IOSPlatformFontList::LookupSystemFont(
14     mozilla::LookAndFeel::FontID aSystemFontID, nsACString& aSystemFontName,
15     gfxFontStyle& aFontStyle) {
16   MOZ_CRASH("UNIMPLEMENTED");
19 nsTArray<std::pair<const char**, uint32_t>>
20 IOSPlatformFontList::GetFilteredPlatformFontLists() {
21   nsTArray<std::pair<const char**, uint32_t>> fontLists;
23   return fontLists;