chromium/third_party/blink/renderer/core/paint/mathml_painter.cc

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

#include "third_party/blink/renderer/core/paint/mathml_painter.h"

#include "third_party/blink/renderer/core/layout/mathml/math_layout_utils.h"
#include "third_party/blink/renderer/core/mathml/mathml_radical_element.h"
#include "third_party/blink/renderer/core/paint/box_fragment_painter.h"
#include "third_party/blink/renderer/core/paint/paint_auto_dark_mode.h"
#include "third_party/blink/renderer/core/paint/paint_info.h"
#include "third_party/blink/renderer/platform/fonts/text_fragment_paint_info.h"
#include "third_party/blink/renderer/platform/geometry/layout_unit.h"
#include "third_party/blink/renderer/platform/graphics/graphics_context_state_saver.h"
#include "third_party/blink/renderer/platform/graphics/paint/drawing_recorder.h"

namespace blink {

void MathMLPainter::PaintBar(const PaintInfo& info,
                             const PhysicalRect& bar_rect) {}

void MathMLPainter::PaintStretchyOrLargeOperator(const PaintInfo& info,
                                                 PhysicalOffset paint_offset) {}

void MathMLPainter::PaintFractionBar(const PaintInfo& info,
                                     PhysicalOffset paint_offset) {}

void MathMLPainter::PaintOperator(const PaintInfo& info,
                                  PhysicalOffset paint_offset) {}

void MathMLPainter::PaintRadicalSymbol(const PaintInfo& info,
                                       PhysicalOffset paint_offset) {}

void MathMLPainter::Paint(const PaintInfo& info, PhysicalOffset paint_offset) {}

}  // namespace blink