diff options
Diffstat (limited to 'webkit')
-rw-r--r-- | webkit/glue/webframe.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/webkit/glue/webframe.h b/webkit/glue/webframe.h index feb5f2b..30baa89 100644 --- a/webkit/glue/webframe.h +++ b/webkit/glue/webframe.h @@ -9,6 +9,7 @@ #include "base/basictypes.h" #include "base/ref_counted.h" +#include "base/gfx/bitmap_platform_device.h" #include "base/gfx/size.h" #include "webkit/glue/console_message_level.h" #include "webkit/glue/find_in_page_request.h" @@ -23,7 +24,6 @@ class WebTextInput; struct NPObject; namespace gfx { -class BitmapPlatformDeviceWin; class Size; class Rect; } @@ -281,7 +281,7 @@ class WebFrame : public base::RefCounted<WebFrame> { // just draws the contents at a different place, but it does mean the // scrollbars in the resulting image will appear to be wrong (they'll be // painted as if the content was scrolled). - virtual gfx::BitmapPlatformDeviceWin CaptureImage(bool scroll_to_zero) = 0; + virtual gfx::BitmapPlatformDevice CaptureImage(bool scroll_to_zero) = 0; // This function sets a flag within WebKit to instruct it to render the page // as View-Source (showing the HTML source for the page). |