summaryrefslogtreecommitdiff
path: root/chromium/content/renderer/sad_plugin.cc
blob: f68f8f481a9f6be19cb629ca5cf7e3d9b6adfcca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// Copyright (c) 2012 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.

#include "content/renderer/sad_plugin.h"

#include <algorithm>
#include <memory>

#include "cc/paint/paint_canvas.h"
#include "cc/paint/paint_flags.h"
#include "ui/gfx/geometry/rect.h"

namespace content {

void PaintSadPlugin(cc::PaintCanvas* webcanvas,
                    const gfx::Rect& plugin_rect,
                    const cc::PaintImage& sad_plugin_image) {
  const int width = plugin_rect.width();
  const int height = plugin_rect.height();

  cc::PaintCanvas* canvas = webcanvas;
  cc::PaintCanvasAutoRestore auto_restore(canvas, true);
  // We draw the sad-plugin bitmap at the origin of canvas.
  // Add a translation so that it appears at the origin of plugin rect.
  canvas->translate(plugin_rect.x(), plugin_rect.y());

  cc::PaintFlags flags;
  flags.setStyle(cc::PaintFlags::kFill_Style);
  flags.setColor(SK_ColorBLACK);
  canvas->drawRect(SkRect::MakeIWH(width, height), flags);
  canvas->drawImage(
      sad_plugin_image,
      SkIntToScalar(std::max(0, (width - sad_plugin_image.width()) / 2)),
      SkIntToScalar(std::max(0, (height - sad_plugin_image.height()) / 2)));
}

}  // namespace content