summaryrefslogtreecommitdiffstats
path: root/webkit/glue/webview_impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'webkit/glue/webview_impl.h')
-rw-r--r--webkit/glue/webview_impl.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/webkit/glue/webview_impl.h b/webkit/glue/webview_impl.h
index 693b90b..837aed1 100644
--- a/webkit/glue/webview_impl.h
+++ b/webkit/glue/webview_impl.h
@@ -8,6 +8,7 @@
#include <set>
#include "base/basictypes.h"
+#include "base/gfx/platform_canvas.h"
#include "base/gfx/point.h"
#include "base/gfx/size.h"
#include "webkit/glue/webdropdata.h"
@@ -58,7 +59,7 @@ class WebViewImpl : public WebView,
virtual void Resize(const gfx::Size& new_size);
virtual gfx::Size GetSize() { return size(); }
virtual void Layout();
- virtual void Paint(gfx::PlatformCanvasWin* canvas, const gfx::Rect& rect);
+ virtual void Paint(gfx::PlatformCanvas* canvas, const gfx::Rect& rect);
virtual bool HandleInputEvent(const WebInputEvent* input_event);
virtual void MouseCaptureLost();
virtual void SetFocus(bool enable);
@@ -183,12 +184,12 @@ class WebViewImpl : public WebView,
WebViewImpl();
~WebViewImpl();
- void ModifySelection(UINT message,
+ void ModifySelection(uint32 message,
WebCore::Frame* frame,
const WebCore::PlatformKeyboardEvent& e);
// WebCore::WidgetClientWin
- virtual HWND containingWindow();
+ virtual gfx::ViewHandle containingWindow();
virtual void invalidateRect(const WebCore::IntRect& damaged_rect);
virtual void scrollRect(int dx, int dy, const WebCore::IntRect& clip_rect);
virtual void popupOpened(WebCore::Widget* widget,