Index: third_party/WebKit/Source/web/PageOverlay.h |
diff --git a/third_party/WebKit/Source/web/PageOverlay.h b/third_party/WebKit/Source/web/PageOverlay.h |
index b75aeda086b517a7c098245925ba3b0c791626d7..5c9ecda55432478cb8d9c0290b584114d16b708e 100644 |
--- a/third_party/WebKit/Source/web/PageOverlay.h |
+++ b/third_party/WebKit/Source/web/PageOverlay.h |
@@ -41,7 +41,6 @@ namespace blink { |
class GraphicsContext; |
class WebPageOverlay; |
class WebViewImpl; |
-class WebGraphicsContext; |
// Manages a layer that is overlaid on a WebView's content. |
// Clients can paint by implementing WebPageOverlay. |
@@ -55,7 +54,7 @@ public: |
DEFINE_INLINE_VIRTUAL_TRACE() { } |
// Paints page overlay contents. |
- virtual void paintPageOverlay(WebGraphicsContext*, const WebSize& webViewSize) const = 0; |
+ virtual void paintPageOverlay(const PageOverlay&, GraphicsContext&, const WebSize& webViewSize) const = 0; |
virtual ~Delegate() { } |
}; |