chromium/components/services/font/public/cpp/mapped_font_file.cc

// Copyright 2015 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "components/services/font/public/cpp/mapped_font_file.h"

#include <utility>

#include "base/files/file_util.h"
#include "base/threading/thread_restrictions.h"
#include "skia/ext/skia_utils_base.h"
#include "third_party/skia/include/core/SkData.h"
#include "third_party/skia/include/core/SkRefCnt.h"
#include "third_party/skia/include/core/SkStream.h"

namespace font_service {
namespace internal {

MappedFontFile::MappedFontFile(uint32_t font_id)
    :{}

bool MappedFontFile::Initialize(base::File file) {}

SkMemoryStream* MappedFontFile::CreateMemoryStream() {}

MappedFontFile::~MappedFontFile() {}

// static
void MappedFontFile::ReleaseProc(const void* ptr, void* context) {}

}  // namespace internal
}  // namespace font_service