blob: 222b92c4d7e59ad73c6c3d8e327956cb86e7e639 [file]
// Copyright 2026 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "pdf/pdf_ink_ids.h"
#include <stddef.h>
#include <variant>
namespace chrome_pdf {
size_t GetIdTypeValue(const IdType& id) {
return std::visit([](const auto& v) { return v.value(); }, id);
}
} // namespace chrome_pdf