#ifndef TOOLS_PRIVACY_BUDGET_FONT_INDEXER_FONT_INDEXER_H_
#define TOOLS_PRIVACY_BUDGET_FONT_INDEXER_FONT_INDEXER_H_
#include <string>
#include <utility>
#include "base/functional/callback.h"
#include "base/values.h"
#include "third_party/blink/renderer/platform/fonts/font_cache.h"
#include "third_party/blink/renderer/platform/fonts/font_description.h"
#include "third_party/blink/renderer/platform/fonts/font_selection_types.h"
#include "third_party/blink/renderer/platform/wtf/text/wtf_string.h"
namespace privacy_budget {
extern const std::pair<blink::FontSelectionValue, std::string> kFontWeights[];
extern const std::pair<blink::FontSelectionValue, std::string> kFontWidths[];
extern const std::pair<blink::FontSelectionValue, std::string> kFontSlopes[];
extern const std::pair<blink::FontSelectionValue, std::string>
kAdditionalFontSlopes[];
extern const char kOutputHeader[];
extern const char kOutputSeparator[];
class FontIndexer { … };
}
#endif