OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef WEBKIT_PLUGINS_SAD_PLUGIN_H_ | 5 #ifndef WEBKIT_PLUGINS_SAD_PLUGIN_H_ |
6 #define WEBKIT_PLUGINS_SAD_PLUGIN_H_ | 6 #define WEBKIT_PLUGINS_SAD_PLUGIN_H_ |
7 | 7 |
8 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCanvas.h" | 8 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebCanvas.h" |
9 #include "webkit/plugins/webkit_plugins_export.h" | 9 #include "webkit/plugins/webkit_plugins_export.h" |
10 | 10 |
11 class SkBitmap; | 11 class SkBitmap; |
12 | 12 |
13 namespace gfx { | 13 namespace gfx { |
14 class Rect; | 14 class Rect; |
15 } | 15 } |
16 | 16 |
17 namespace webkit { | 17 namespace webkit { |
18 | 18 |
19 // Paints the sad plugin to the given canvas for the given plugin bounds. This | 19 // Paints the sad plugin to the given canvas for the given plugin bounds. This |
20 // is used by both the NPAPI and the PPAPI out-of-process plugin impls. | 20 // is used by both the NPAPI and the PPAPI out-of-process plugin impls. |
21 WEBKIT_PLUGINS_EXPORT void PaintSadPlugin(WebKit::WebCanvas* canvas, | 21 WEBKIT_PLUGINS_EXPORT void PaintSadPlugin(WebKit::WebCanvas* canvas, |
22 const gfx::Rect& plugin_rect, | 22 const gfx::Rect& plugin_rect, |
23 const SkBitmap& sad_plugin_bitmap); | 23 const SkBitmap& sad_plugin_bitmap); |
24 | 24 |
25 } // namespace | 25 } // namespace |
26 | 26 |
27 #endif // WEBKIT_PLUGINS_SAD_PLUGIN_H_ | 27 #endif // WEBKIT_PLUGINS_SAD_PLUGIN_H_ |
OLD | NEW |