blob: 5b85f573390e8c496ef1abd95e8f776b744b53cd [file] [log] [blame]
// Copyright 2020 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.
syntax = "proto2";
option optimize_for = LITE_RUNTIME;
package blink;
message FontEnumerationTable {
// Represents font metadata to be enumerated.
message FontMetadata {
required string postscript_name = 10;
required string full_name = 20;
required string family = 30;
required string style = 40;
}
repeated FontMetadata fonts = 10;
}