Don't pass a null ServiceWorker registration with OK status code.
[chromium-blink-merge.git] / content / renderer / sad_plugin.h
blob4148c0ae0863b9c7438eea2e6ee7432adcd40a3c
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CONTENT_RENDERER_SAD_PLUGIN_H_
6 #define CONTENT_RENDERER_SAD_PLUGIN_H_
8 #include "third_party/WebKit/public/platform/WebCanvas.h"
10 class SkBitmap;
12 namespace gfx {
13 class Rect;
16 namespace content {
18 // Paints the sad plugin to the given canvas for the given plugin bounds. This
19 // is used by both the NPAPI and the PPAPI out-of-process plugin impls.
20 void PaintSadPlugin(blink::WebCanvas* canvas,
21 const gfx::Rect& plugin_rect,
22 const SkBitmap& sad_plugin_bitmap);
24 } // namespace content
26 #endif // CONTENT_RENDERER_SAD_PLUGIN_H_