summaryrefslogtreecommitdiff
path: root/chromium/content/browser/renderer_host/pepper/pepper_truetype_font_list_ozone.cc
blob: e8b81080c86c50cad7cda40a536c19b2daccfb2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// 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"

#ifndef TOOLKIT_QT
namespace content {

void GetFontFamilies_SlowBlocking(std::vector<std::string>* font_families) {
  NOTIMPLEMENTED();
}

void GetFontsInFamily_SlowBlocking(
    const std::string& family,
    std::vector<ppapi::proxy::SerializedTrueTypeFontDesc>* fonts_in_family) {
  NOTIMPLEMENTED();
}

}  // namespace content
#endif