chromium/third_party/blink/renderer/modules/handwriting/handwriting_stroke.cc

// Copyright 2021 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/modules/handwriting/handwriting_stroke.h"

#include "third_party/blink/renderer/bindings/core/v8/script_promise.h"
#include "third_party/blink/renderer/bindings/modules/v8/v8_handwriting_point.h"

namespace blink {

HandwritingStroke::HandwritingStroke() = default;

HandwritingStroke::~HandwritingStroke() = default;

// static
HandwritingStroke* HandwritingStroke::Create() {}

void HandwritingStroke::addPoint(const HandwritingPoint* point) {}

const HeapVector<Member<const HandwritingPoint>>& HandwritingStroke::getPoints()
    const {}

void HandwritingStroke::clear() {}

void HandwritingStroke::Trace(Visitor* visitor) const {}

}  // namespace blink