root/content/browser/renderer_host/pepper/pepper_truetype_font_list_ozone.cc

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. GetFontFamilies_SlowBlocking
  2. GetFontsInFamily_SlowBlocking

// 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();
}

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

}  // namespace content

/* [<][>][^][v][top][bottom][index][help] */