summaryrefslogtreecommitdiffstats
path: root/webkit
diff options
context:
space:
mode:
authoravi@google.com <avi@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-09-12 15:22:42 +0000
committeravi@google.com <avi@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-09-12 15:22:42 +0000
commit8772ee554b29a74ecc3d882833acf22ed5581adc (patch)
treea2bc53ce3c34863b67df834a9b8d97847d39bdbe /webkit
parent4c3c971f9fabbf9d1a83d58794b0e940e794b259 (diff)
downloadchromium_src-8772ee554b29a74ecc3d882833acf22ed5581adc.zip
chromium_src-8772ee554b29a74ecc3d882833acf22ed5581adc.tar.gz
chromium_src-8772ee554b29a74ecc3d882833acf22ed5581adc.tar.bz2
Small tweak for platform-free types.
Review URL: http://codereview.chromium.org/1958 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@2110 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit')
-rw-r--r--webkit/glue/webframe.h4
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).