Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1220)

Unified Diff: third_party/WebKit/Source/web/PageOverlay.h

Issue 1412593003: Remove WebGraphicsContext/WebGraphicsContextImpl (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove another include WebGraphicsContext.h Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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() { }
};

Powered by Google App Engine
This is Rietveld 408576698