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

Unified Diff: Source/platform/graphics/OpaqueRectTrackingContentLayerDelegate.h

Issue 476683002: Cleanup namespace usage in platform/graphics/[G-S]* (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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/platform/graphics/OpaqueRectTrackingContentLayerDelegate.h
diff --git a/Source/platform/graphics/OpaqueRectTrackingContentLayerDelegate.h b/Source/platform/graphics/OpaqueRectTrackingContentLayerDelegate.h
index faf8abec205736298f5b7e5b9117ef229a8540e6..f84fadf9ad427edc9eb587a284cbff07b771cebd 100644
--- a/Source/platform/graphics/OpaqueRectTrackingContentLayerDelegate.h
+++ b/Source/platform/graphics/OpaqueRectTrackingContentLayerDelegate.h
@@ -45,7 +45,7 @@ protected:
virtual ~GraphicsContextPainter() { }
};
-class PLATFORM_EXPORT OpaqueRectTrackingContentLayerDelegate : public blink::WebContentLayerClient {
+class PLATFORM_EXPORT OpaqueRectTrackingContentLayerDelegate : public WebContentLayerClient {
WTF_MAKE_NONCOPYABLE(OpaqueRectTrackingContentLayerDelegate);
public:
explicit OpaqueRectTrackingContentLayerDelegate(GraphicsContextPainter*);
@@ -55,15 +55,15 @@ public:
// tracking opaqueness.
void setOpaque(bool opaque) { m_opaque = opaque; }
- // blink::WebContentLayerClient implementation.
- virtual void paintContents(SkCanvas*, const blink::WebRect& clip, bool canPaintLCDText, blink::WebFloatRect& opaque,
- blink::WebContentLayerClient::GraphicsContextStatus = GraphicsContextEnabled) OVERRIDE;
+ // WebContentLayerClient implementation.
+ virtual void paintContents(SkCanvas*, const WebRect& clip, bool canPaintLCDText, WebFloatRect& opaque,
+ WebContentLayerClient::GraphicsContextStatus = GraphicsContextEnabled) OVERRIDE;
private:
GraphicsContextPainter* m_painter;
bool m_opaque;
};
-}
+} // namespace blink
#endif // OpaqueRectTrackingContentLayerDelegate_h
« no previous file with comments | « Source/platform/graphics/LoggingCanvas.cpp ('k') | Source/platform/graphics/OpaqueRectTrackingContentLayerDelegate.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698