blob: 127cd1b462c629c132da325af69fb52feaf58dca [file] [log] [blame]
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef PRINTING_METAFILE_SKIA_WRAPPER_H_
#define PRINTING_METAFILE_SKIA_WRAPPER_H_
#include "third_party/skia/include/core/SkRefCnt.h"
class SkCanvas;
namespace printing {
class Metafile;
// A wrapper class with static methods to set and retrieve a Metafile
// on an SkCanvas. The ownership of the metafile is not affected and it
// is the caller's responsibility to ensure that the metafile remains valid
// as long as the canvas.
class MetafileSkiaWrapper : public SkRefCnt {
public:
static void SetMetafileOnCanvas(SkCanvas* canvas, Metafile* metafile);
static Metafile* GetMetafileFromCanvas(SkCanvas* canvas);
static void SetDraftMode(SkCanvas* canvas, bool draft_mode);
static bool GetDraftMode(SkCanvas* canvas);
private:
explicit MetafileSkiaWrapper(Metafile* metafile);
Metafile* metafile_;
};
} // namespace printing
#endif // PRINTING_METAFILE_SKIA_WRAPPER_H_