chromium/ui/gfx/image/image_skia_rep_default.cc

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

#include "ui/gfx/image/image_skia_rep_default.h"

#include "base/check_op.h"
#include "base/notreached.h"
#include "cc/paint/display_item_list.h"
#include "cc/paint/record_paint_canvas.h"
#include "cc/paint/skia_paint_canvas.h"
#include "skia/ext/legacy_display_globals.h"
#include "third_party/skia/include/core/SkCanvas.h"
#include "ui/gfx/color_palette.h"

namespace gfx {

ImageSkiaRep::ImageSkiaRep()
    :{}

ImageSkiaRep::ImageSkiaRep(const gfx::Size& size, float scale)
    :{}

ImageSkiaRep::ImageSkiaRep(const SkBitmap& src, float scale)
    :{}

ImageSkiaRep::ImageSkiaRep(cc::PaintRecord paint_record,
                           const gfx::Size& pixel_size,
                           float scale)
    :{}

ImageSkiaRep::ImageSkiaRep(const ImageSkiaRep& other)
    :{}

ImageSkiaRep::~ImageSkiaRep() {}

int ImageSkiaRep::GetWidth() const {}

int ImageSkiaRep::GetHeight() const {}

cc::PaintRecord ImageSkiaRep::GetPaintRecord() const {}

const SkBitmap& ImageSkiaRep::GetBitmap() const {}

}  // namespace gfx