#include "pdf/ink/stub/ink_stroke_input_batch_stub.h"
#include <memory>
#include "base/check_op.h"
namespace chrome_pdf {
std::unique_ptr<InkStrokeInputBatch> InkStrokeInputBatch::Create(
const std::vector<InkStrokeInput>& inputs) { … }
InkStrokeInputBatchStub::InkStrokeInputBatchStub() = default;
InkStrokeInputBatchStub::InkStrokeInputBatchStub(
const InkStrokeInputBatchStub& other) = default;
InkStrokeInputBatchStub& InkStrokeInputBatchStub::operator=(
const InkStrokeInputBatchStub& other) = default;
InkStrokeInputBatchStub::InkStrokeInputBatchStub(
const std::vector<InkStrokeInput>& inputs)
: … { … }
InkStrokeInputBatchStub::~InkStrokeInputBatchStub() = default;
size_t InkStrokeInputBatchStub::Size() const { … }
InkStrokeInput InkStrokeInputBatchStub::Get(size_t i) const { … }
}