Index: Source/web/PageOverlay.h |
diff --git a/Source/web/PageOverlay.h b/Source/web/PageOverlay.h |
index d35725646edee5e3748257f489d86240b62dc296..8f795a704e6c4d3e3d84a54627bd625589a97198 100644 |
--- a/Source/web/PageOverlay.h |
+++ b/Source/web/PageOverlay.h |
@@ -33,12 +33,10 @@ |
#include "wtf/PassOwnPtr.h" |
namespace blink { |
+ |
class GraphicsContext; |
class GraphicsLayer; |
class GraphicsLayerClient; |
-} |
- |
-namespace blink { |
class OverlayGraphicsLayerClientImpl; |
class WebPageOverlay; |
class WebViewImpl; |
@@ -58,9 +56,9 @@ public: |
void clear(); |
void update(); |
- void paintWebFrame(blink::GraphicsContext&); |
+ void paintWebFrame(GraphicsContext&); |
- blink::GraphicsLayer* graphicsLayer() const { return m_layer.get(); } |
+ GraphicsLayer* graphicsLayer() const { return m_layer.get(); } |
private: |
PageOverlay(WebViewImpl*, WebPageOverlay*); |
@@ -68,8 +66,8 @@ private: |
WebViewImpl* m_viewImpl; |
WebPageOverlay* m_overlay; |
- OwnPtr<blink::GraphicsLayerClient> m_layerClient; |
- OwnPtr<blink::GraphicsLayer> m_layer; |
+ OwnPtr<GraphicsLayerClient> m_layerClient; |
+ OwnPtr<GraphicsLayer> m_layer; |
int m_zOrder; |
}; |