chromium/third_party/skia/src/core/SkDocument.cpp

/*
 * Copyright 2013 Google Inc.
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */
#include "include/core/SkDocument.h"

#include "include/core/SkCanvas.h"
#include "include/core/SkRect.h"
#include "include/private/base/SkAssert.h"

SkDocument::SkDocument(SkWStream* stream) :{}

SkDocument::~SkDocument() {}

static SkCanvas* trim(SkCanvas* canvas, SkScalar width, SkScalar height,
                      const SkRect* content) {}

SkCanvas* SkDocument::beginPage(SkScalar width, SkScalar height,
                                const SkRect* content) {}

void SkDocument::endPage() {}

void SkDocument::close() {}

void SkDocument::abort() {}