summaryrefslogtreecommitdiff
path: root/chromium/content/browser/renderer_host/pepper/pepper_truetype_font_list_android.cc
blob: 28db24f7ffab7a90da610f1c0879412ad28f3faf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright (c) 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "base/logging.h"
#include "content/browser/renderer_host/pepper/pepper_truetype_font_list.h"

namespace content {

void GetFontFamilies_SlowBlocking(std::vector<std::string>* font_families) {
  NOTIMPLEMENTED();  // Font API isn't implemented on Android.
}

void GetFontsInFamily_SlowBlocking(
    const std::string& family,
    std::vector<ppapi::proxy::SerializedTrueTypeFontDesc>* fonts_in_family) {
  NOTIMPLEMENTED();  // Font API isn't implemented on Android.
}

}  // namespace content