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

Unified Diff: Source/core/layout/compositing/GraphicsLayerTreeBuilder.h

Issue 1162383003: C++11: Replace 0 with nullptr where applicable in layout code. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add one more file. Created 5 years, 6 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/core/layout/compositing/GraphicsLayerTreeBuilder.h
diff --git a/Source/core/layout/compositing/GraphicsLayerTreeBuilder.h b/Source/core/layout/compositing/GraphicsLayerTreeBuilder.h
index b99348fcd97c97bdb7b19c95031e2e4e56fb10b4..ad493beca986f7d1e94fb54ecd489ea432ae0f48 100644
--- a/Source/core/layout/compositing/GraphicsLayerTreeBuilder.h
+++ b/Source/core/layout/compositing/GraphicsLayerTreeBuilder.h
@@ -40,8 +40,8 @@ public:
struct AncestorInfo {
AncestorInfo()
- : enclosingCompositedLayer(0)
- , childLayersOfEnclosingCompositedLayer(0)
+ : enclosingCompositedLayer(nullptr)
+ , childLayersOfEnclosingCompositedLayer(nullptr)
{
}

Powered by Google App Engine
This is Rietveld 408576698