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

Unified Diff: Source/web/PageOverlay.h

Issue 462613002: Cleanup namespace usage in Source/web/[A-V]*.h (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 6 years, 4 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: Source/web/PageOverlay.h
diff --git a/Source/web/PageOverlay.h b/Source/web/PageOverlay.h
index d35725646edee5e3748257f489d86240b62dc296..1f47cd424bd39c3724180464430d1bd94e6160fb 100644
--- a/Source/web/PageOverlay.h
+++ b/Source/web/PageOverlay.h
@@ -33,12 +33,14 @@
#include "wtf/PassOwnPtr.h"
namespace blink {
tkent 2014/08/11 13:23:17 Remove this.
deepak.sa 2014/08/11 13:39:08 Done.
-class GraphicsContext;
-class GraphicsLayer;
-class GraphicsLayerClient;
+
}
namespace blink {
+
+class GraphicsContext;
+class GraphicsLayer;
+class GraphicsLayerClient;
class OverlayGraphicsLayerClientImpl;
class WebPageOverlay;
class WebViewImpl;
@@ -58,9 +60,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 +70,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;
};

Powered by Google App Engine
This is Rietveld 408576698