// Copyright 2024 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/ink/ink_affine_transform.h" #include <ostream> namespace chrome_pdf { bool operator==(const InkAffineTransform& lhs, const InkAffineTransform& rhs) { … } void PrintTo(const InkAffineTransform& transform, std::ostream* os) { … } } // namespace chrome_pdf